我最近得到了python 3.6,我正在安装python包。到目前为止请求已经有效但是对于pygame,我收到错误:
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\Nicholas\AppData\Local\Temp\pip-build-xufd58ed\pygame\setup.py", line 165, in <module>
extensions = read_setup_file('Setup')
File "c:\program files\python36\lib\distutils\extension.py", line 171, in read_setup_file
line = expand_makefile_vars(line, vars)
File "c:\program files\python36\lib\distutils\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\Nicholas\AppData\Local\Temp\pip-build-xufd58ed\pygame\
安装其他软件包(如pandas)时,我遇到类似的错误 错误可能是包还没有为python 3.6或其他东西做好准备吗? 我正在运行Windows 10 64位
请帮忙,Nic
答案 0 :(得分:1)
我和你有同样的问题。
转到此页面:http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame并下载适合 Python 和 Windows 版本的.whl
文件
就我而言,pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
因为我使用 Python 3.6.0 和 Windows 64位。
接下来,在任务栏的搜索框中输入cmd
,然后按Enter键。命令窗口将打开。
在cmd中输入以下内容:
pip install setuptools
pip install wheel
pip install --upgrade setuptools
pip install --upgrade wheel
安装pygame时有两个选项:
将您之前下载的文件粘贴到Python文件夹中(就我的情况而言 C:\Python
)。
如果您下载了pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
,请安装pygame
:
pip install pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
(或者将pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
更改为您下载的文件的名称(如果它与我的不同)。
在输入上一个命令之前,请确保您下载的文件位于Python文件夹( in case case ,C:\Python\pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
)中并且您复制了整个文件名,包括{{ 1}}扩展,否则它不会工作。
将之前下载的文件粘贴到桌面上。
如果您将.whl
文件放在桌面上,请输入此文件以更改当前目录:
.whl
然后,如果您下载了cd "C:\Users\(your_username)\Desktop"
,请安装pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
:
pygame
(或者将pip install pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
更改为您下载的文件的名称(如果它与我的不同)。
在您输入上一个命令之前,请确保更改当前目录并复制整个文件名,包括pygame‑1.9.2‑cp36‑cp36m‑win_amd64.whl
扩展名,否则它将无法正常工作
这应该安装.whl
1.9.2并使用Python 3.6.0。