Open melvinkokxw opened 6 months ago
generated_jit
was removed in numba>=0.59.0
. Temporary fix is to pin numba<=0.58.1
.
That works...unless you are on python 3.12, because you cannot install numba 0.58.1 on 3.12
Setting minimal versions of numba
and visions
worked for me (for python 3.9):
# numba>=0.59.0 removed `numba.decorated_jit`
numba>=0.59.0
visions>=0.7.6
Edit: It looks like the above works if you are using pandas>=2.0
. If pandas<2.0
, these versions are working here:
numba<0.59.0
visions<0.7.6
any luck on this one? I still have same issue
Same here.
And here. numba<=0.58.1
works as a tmp workaround for me.
any permanent fix found? as none of the above fixes are working for me.
I had to create a venv using Python 3.11 to get it to work.
facing the same issue on Kaggle / Python 3.12, any hint how to patch the install section ?
# data analysis
!pip install --upgrade ydata-profiling
!pip install -U ydata-profiling[notebook,unicode]
Anything new on this, please?
And here.
numba<=0.58.1
works as a tmp workaround for me.
This is a working temporary solution
Someone please post a complete workaround on this, since now the package is unusable
Current Behaviour
Trying to import
ProfileReport
(i.e.from ydata_profiling import ProfileReport
) gives the errorAttributeError: module 'numba' has no attribute 'generated_jit'
.Expected Behaviour
Import should happen without issues
Data Description
NA. Error is thrown before any dataset is used.
Code that reproduces the bug
pandas-profiling version
v4.7.0
Dependencies
OS
macos
Checklist