Programming/Python

[Python] numpy RuntimeError 오류

당닝 2020. 11. 29. 15:40
728x90

RuntimeError: The current Numpy installation ('...\\venv\\lib\\site-packages\\numpy\\__init__.py') fails to pass a sanity check due to a bug in the windows runtime.

 

numpy가 1.19.4 최신 버전이어서 생기는 오류이므로, numpy를 1.19.3버전으로 다운그레이드 시켜야 합니다.

Anaconda Prompt에 다음과 같이 입력하시면 됩니다.

pip install numpy==1.19.3

 

728x90