반응형
오류:RuntimeError: Numpy is not available

RuntimeError: Numpy is not available
문제가 떴다.
Numpy downgrade로 해결

원래 numpy 2.2.3 버전인 것을 numpy==1.24.1 버전으로 낮춰서 해결했다
pip install numpy==1.24.1
pip install numpy==1.24.1
Reference
How to solve the pytorch RuntimeError: Numpy is not available without upgrading numpy to the latest version because of other dep
I am running a simple CNN using Pytorch for some audio classification on my Raspberry Pi 4 on Python 3.9.2 (64-bit). For the audio manipulation needed I am using librosa. librosa depends on the numba
stackoverflow.com
반응형