본문 바로가기
백엔드/Python

pip install *.whl is not a supported wheel on this platform

by 작은소행성 2022. 1. 7.

whl 파일을 설치하려는데 오류가 나면서 설치가 되지 않았다. 

다음 명령어를 사용해서 pip 이 지원되는 버전을 확인하면된다. 

 

 

 

import wheel.pep425tags
print(wheel.pep425tags.get_supported())

 

 

 

 

 

위에서 해당되는 버전을 확인 후 아래에서 파일을 다운받아 사용하면 된다. 

 

 

https://www.lfd.uci.edu/~gohlke/pythonlibs/#jpype

 

반응형