You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
John,
On Win10 with Python 3.8, it seems Numba 0.49 does not work for logistic_interactive.py
"> python logistic_interactive.py
Traceback (most recent call last):
File "C:\Program Files\Python38\lib\site-packages\numba\core\typeconv\typeconv.py", line 4, in <module>
from numba.core.typeconv import _typeconv
ImportError: DLL load failed while importing _typeconv: The specified module could not be found.
"
I googled that and it seems some other folks seem to complain about latest version.
with that it seems to work with 2 deprecation warnings:
python logistic_interactive.py
logistic_interactive.py:533: DeprecationWarning: an integer is required (got type float). Implicit conversion to integers using __int__ is deprecated, and may be removed in a future version of Python.
self.rate.setValue( linear_interp(self.rateval,
logistic_interactive.py:551: DeprecationWarning: an integer is required (got type float). Implicit conversion to integers using __int__ is deprecated, and may be removed in a future version of Python.
self.ipop.setValue( linear_interp(self.ipopval,
The text was updated successfully, but these errors were encountered:
John,
On Win10 with Python 3.8, it seems Numba 0.49 does not work for logistic_interactive.py
I googled that and it seems some other folks seem to complain about latest version.
Remediation:
Step 1: pip uninstall numba
Step 2: force older version: > pip install numba==0.48
with that it seems to work with 2 deprecation warnings:
The text was updated successfully, but these errors were encountered: