파이썬(Python)에서 Numpy 패키지 설치 시 나타나는
RuntimeError: The current Numpy installation
에 대한 오류 조치내용을 정리한 글입니다.
현상
파이썬 분석 환경을 구축하기 위해 Python 설치 후 Numpy
를 설치하는 과정에서 에러 발생
- Error Message
RuntimeError: The current Numpy installation ('D:\\anaconda3\\envs\\py38\\lib\\site-packages\\numpy\\__init__.py') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86
This error occurs when using python3.9 and numpy1.19.4 So uninstalling numpy1.19.4 and installing 1.19.3 will work.
조치
에러 메시지 중 This error occurs when using python3.9 and numpy1.19.4 So uninstalling numpy1.19.4 and installing 1.19.3 will work.
내용을 참고하여 Numpy
버전을 1.19.3
으로 재설치함
This error occurs when using python3.9 and numpy1.19.4 So uninstalling numpy1.19.4 and installing 1.19.3 will work.
위 에러는 Numpy 최신 버전(1.19.4)을 사용하려는 과정에서 발생하는 에러로 python3.9에서 안정화된 버전인 1.19.3 설치를 제안합니다.
- Script
> pip install numpy==1.19.3
해결
numpy
를 1.19.3
으로 재설치하면서 해당 문제 해결됨
관련 링크
[1] How do you fix “runtimeError: package fails to pass a sanity check” for numpy and pandas?
System Info.
Windows 10
Python 3.8.1
PyCharm 2020.3.3 (Community Edition)
R version 4.0.3 (2020-10-10)
RStudio Version 1.4.1103
JRE: 11.0.2+159 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o