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
I found the error when i use the latest version of pyworld(0.3.4) with the numpy version 1.22.4:
concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):
File "__init__.cython-30.pxd", line 984, in numpy.import_array
RuntimeError: module compiled against API version 0x10 but this version of numpy is 0xf . Check the section C-API incompatibility at t
he Troubleshooting ImportError section at https://numpy.org/devdocs/user/troubleshooting-importerror.html#c-api-incompatibility for in
dications on how to solve this problem .
File "${SOMEWHERE}/foo.py", line 2, in <modul
e>
import pyworld
File "C:\ProgramData\Anaconda3\lib\site-packages\pyworld\__init__.py", line 17, in <module>
from .pyworld import *
File "pyworld\\pyworld.pyx", line 6, in init pyworld.pyworld
File "__init__.cython-30.pxd", line 986, in numpy.import_array
ImportError: numpy.core.multiarray failed to import
"""
when I change the version of pyworld to 0.3.0 it works normally.
but it has not any remind in pip.
Before NumPy 1.25, the NumPy C-API was not backwards compatible. This means that when compiling with a NumPy version earlier than 1.25 you have to compile with the oldest version you wish to support. This can be done by using oldest-supported-numpy. Please see the NumPy 1.24 documentation.
I found the error when i use the latest version of pyworld(0.3.4) with the numpy version 1.22.4:
when I change the version of pyworld to 0.3.0 it works normally.
but it has not any remind in pip.
The text was updated successfully, but these errors were encountered: