下载最新版的python3.8安装之后,发现用pip命令可以安装ipython,但是不可以安装pygame,尝试了网上的其他方法都没成功。
始终报如下错误:
Using cached https://files.pythonhosted.org/packages/0f/9c/78626be04e193c0624842090fe5555b3805c050dfaa81c8094d6441db2be/pygame-1.9.6.tar.gz
ERROR: Complete output from command python setup.py egg_info:ERROR:
WARNING, No "Setup" File Exists, Running "buildconfig/config.py" Using WINDOWS configuration...
ERROR: Command "python setup.py egg_info" failed with error code 1 in C:……Temp\pip-install-328iyo_1\pygame\
百度了一下,没找到错误的原因在哪儿……
是不是这个python版本没有与之适配的pygame版本?
于是只好卸载重装。
重装的时候选择公开发行版本(Release version),我选的是3.7.3
安装的时候记得勾选添加到path
至此,python重装完毕。
在PS/cmd下输入:pip install pygame 就能成功安装了
PS C:\Windows\system32> pip install pygame Collecting pygame Downloading https://files.pythonhosted.org/packages/ed/56/b63ab3724acff69f4080e54c4bc5f55d1fbdeeb19b92b70acf45e88a5908/pygame-1.9.6-cp37-cp37m-win_amd64.whl (4.3MB) 100% |████████████████████████████████| 4.3MB 176kB/s Installing collected packages: pygame
Successfully installed pygame-1.9.6 You are using pip version 19.0.3, however version 19.1.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.