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
RuntimeError: module compiled against API version 0x10 but this version of numpy is 0xf
Traceback (most recent call last):
File "D:\Python\PythonProjects\VoiceClone\OpenVoice\openvoice\se_extractor.py", line 5, in
import librosa
File "D:\Python\PythonProjects\VoiceClone\OpenVoice\venv\Lib\site-packages\librosa_init_.py", line 209, in
from . import core
File "D:\Python\PythonProjects\VoiceClone\OpenVoice\venv\Lib\site-packages\librosa\core_init_.py", line 5, in
from .convert import * # pylint: disable=wildcard-import
Could u tell me how to fixed this issue? Thanks!
The text was updated successfully, but these errors were encountered:
Hey @endlessYoung! I'm here to help with any bugs or questions you have while waiting for a human maintainer. Let's tackle this issue together!
To fix the RuntimeError caused by a mismatch between the compiled API version of a module and the current version of NumPy when importing the librosa library, use Python 3.9 instead of newer Python versions (like 3.11). This error occurs due to version incompatibility between Python and the required dependencies [1].
RuntimeError: module compiled against API version 0x10 but this version of numpy is 0xf
Traceback (most recent call last):
File "D:\Python\PythonProjects\VoiceClone\OpenVoice\openvoice\se_extractor.py", line 5, in
import librosa
File "D:\Python\PythonProjects\VoiceClone\OpenVoice\venv\Lib\site-packages\librosa_init_.py", line 209, in
from . import core
File "D:\Python\PythonProjects\VoiceClone\OpenVoice\venv\Lib\site-packages\librosa\core_init_.py", line 5, in
from .convert import * # pylint: disable=wildcard-import
Could u tell me how to fixed this issue? Thanks!
The text was updated successfully, but these errors were encountered: