본문 바로가기

카테고리 없음

[에러 해결] RuntimeError: Numpy is not available scheduling ddim.py에서 발생 / pip install numpy

반응형

 

 

오류: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

 

https://stackoverflow.com/questions/71689095/how-to-solve-the-pytorch-runtimeerror-numpy-is-not-available-without-upgrading

 

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

 

 

 

 

반응형