【Python】学习遇到错误记录

来源:互联网 发布:一人能开几个淘宝店 编辑:程序博客网 时间:2024/06/05 05:15

###########################

错误 *.whl is not a supported wheel on this platform.

D:\Download>pip install pygame-1.9.3-cp36-cp36m-win32.whl
pygame-1.9.3-cp36-cp36m-win32.whl is not a supported wheel on this platform.


错误原因:Python本身版本为2.7,需要安装的whl文件对应Python版本为3.6

解决办法:pip install pygame-1.9.3-cp27-cp27m-win32.whl


原创粉丝点击