Hi…
I’m having trouble starting NodeWorks.
After installation, it does not start and generates an error:
Traceback (most recent call last):
File “C:\Users\umpdk\anaconda3\Scripts\nodeworks-script.py”, line 5, in
from nodeworks.app import main
File “C:\Users\umpdk\anaconda3\Lib\site-packages\nodeworks_init_.py”, line 38, in
from nodeworks import tools
File “C:\Users\umpdk\anaconda3\Lib\site-packages\nodeworks\tools_init_.py”, line 3, in
from nodeworks.tools.general import (DictList, TYPEMAP, check_on_main_thread,
File “C:\Users\umpdk\anaconda3\Lib\site-packages\nodeworks\tools\general.py”, line 81, in
np.float if np else None,
^^^^^^^^
File “C:\Users\umpdk\anaconda3\Lib\site-packages\numpy_init_.py”, line 305, in getattr
raise AttributeError(former_attrs[attr])
AttributeError: module ‘numpy’ has no attribute ‘float’.
np.float
was a deprecated alias for the builtin float
. To avoid this error in existing code, use float
by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.float64
here.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
NumPy 1.20.0 Release Notes — NumPy v2.0.dev0 Manual. Did you mean: ‘cfloat’?
Is there a way to fix this?
Regards