module compiled against API version 0xc but this version of numpy is 0xb
에러 대처법
넘파이(numpy)도 버전의 영향을 받는 것으로 판단된다. 파이썬(Python)의 고질적인 문제인데, 자바(Java)같은 경우는 프로젝트 별로 라이브러리(Library)를 자유롭게 조절할 수 있지만, 파이썬은 이것이 상당히 좀 귀찮다.
해결방법은 당연히, 버전을 변경하는 것인데,
pip install --upgrade numpy
C:\Windows\System32>pip install --upgrade numpy
Collecting numpy
Downloading https://files.pythonhosted.org/packages/62/47/54baeff52b37be258dd9
7442f52d8a2a9c27c4af8fcbc5467827c5ae5eed/numpy-1.15.0-cp35-none-win_amd64.whl (13.5MB)
100% |################################| 13.5MB 95kB/s
Installing collected packages: numpy
Found existing installation: numpy 1.13.3
Uninstalling numpy-1.13.3:
Successfully uninstalled numpy-1.13.3
Successfully installed numpy-1.15.0
C:\Windows\System32>
위와 같이, numpy 버전을 업그레이드 후, 다시 프로그램을 실행하니 정상적으로 실행이 된다.
'Stackoverflow > Python' 카테고리의 다른 글
pip 버전 업그레이드 방법 (0) | 2020.06.11 |
---|---|
[MacOS] xcrun: error: invalid active developer path... (1) | 2020.04.26 |
python, pip dlib install 에러 해결 (0) | 2020.03.12 |
케라스(Keras), KeyError: 'acc' (3) | 2019.11.20 |
UnicodeDecodeError: 'cp949' codec can't decode bytes in position : illegal multibyte sequence (2) | 2017.06.09 |