想通过控制台运行一个Python程序
报错:“ModuleNotFoundError: No module named ‘pygame’”
终端输入:
C:\Users\panansi>pip install pygame
报错:
百度搜索:
红框中参考链接:安装Pygame和pip的艰辛之路
第一次下载的版本为:pygame-1.9.6-cp36-cp36m-win_amd64.whl
出现问题:WARNING: Requirement ‘pygame-1.9.6-cp36-cp36m-win_amd64.whl’ looks like a filename, but the file does not exist
ERROR: pygame-1.9.6-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
百度搜索:
红框中参考链接:Python报错xxx.whl is not a supported wheel on this platform
其实我电脑上Python版本为3.7,而下载对应的pygame的版本号为Python3.6。到https://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame去下载对应的版本:
下载完成后终端再输入:
C:\Users\panansi>pip install C:\Users\panansi\Downloads\pygame-1.9.6-cp37-cp37m-win_amd64.whl
最后结果:
其实这里这样子输入是因为我参考了另外一篇博文:
安装pygame遇到的坑 提到说文件不存在的问题,所以就把文件的绝对路径包括进去了。查阅这篇博文的读者可以试试不输入绝对路径,看看是否能成功安装。