我正在尝试安装pygame以通过pip使用python,但是当我使用命令pip install pygame时,它开始工作并且似乎没问题,直到它抛出错误。这是我得到的输出,我不确定我是做得对还是什么,我是新来的pip所以我只是不确定。任何帮助将不胜感激!
C:\Users\Matthew>pip install pygame
Collecting pygame
Using cached pygame-1.9.2.tar.gz
Complete output from command python setup.py egg_info:
WARNING, No "Setup" File Exists, Running "config.py"
Using WINDOWS configuration...
Path for SDL not found.
Too bad that is a requirement! Hand-fix the "Setup"
Path for FONT not found.
Path for IMAGE not found.
Path for MIXER not found.
Path for PNG not found.
Path for JPEG not found.
Path for PORTMIDI not found.
Path for COPYLIB_tiff not found.
Path for COPYLIB_z not found.
Path for COPYLIB_vorbis not found.
Path for COPYLIB_ogg not found.
If you get compiler errors during install, doublecheck
the compiler flags in the "Setup" file.
Continuing With "setup.py"
Error with the "Setup" file,
perhaps make a clean copy from "Setup.in".
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\Matthew\AppData\Local\Temp\pip-build-kzk4_t2_\pygame\setup.
py", line 165, in <module>
extensions = read_setup_file('Setup')
File "c:\users\matthew\appdata\local\programs\python\python36-32\lib\distu
tils\extension.py", line 171, in read_setup_file
line = expand_makefile_vars(line, vars)
File "c:\users\matthew\appdata\local\programs\python\python36-32\lib\distu
tils\sysconfig.py", line 410, in expand_makefile_vars
s = s[0:beg] + vars.get(m.group(1)) + s[end:]
TypeError: must be str, not NoneType
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Matthew\
AppData\Local\Temp\pip-build-kzk4_t2_\pygame\
答案 0 :(得分:0)
这是一个古老的问题,但是错误通常与不兼容的Python和PyGame版本有关。您应该检查所使用的Python版本是否与PyGame的版本兼容。
您可能需要安装特定版本的PyGame,例如python -m pip install pygame==1.9.3
我一直在将PyGame 1.9.3与Python 3.6.8结合使用,并且运行良好