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
'Programming > Python' 카테고리의 다른 글
[Python] 코드업 기초 100제 (0) | 2021.07.01 |
---|---|
[Python] 큐(queue) 예제 (0) | 2021.06.02 |
[Python] 파이썬 문자열(String) 관련 함수들 (0) | 2020.09.08 |
[Python] 파이썬 아스키코드 ↔ 문자 변환 방법 (0) | 2020.09.08 |
[Python] 파이썬 리스트(list) 관련 함수들 (0) | 2020.09.08 |