gpt4 book ai didi

安装 Pygame 时 Python pip3 Egg_info 错误代码 1

转载 作者:太空宇宙 更新时间:2023-11-03 15:50:34 25 4
gpt4 key购买 nike

我最近获得了 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 位

请帮忙,尼克

最佳答案

我也遇到了和你一样的问题

设置

转到此页面:http://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame并下载适合您的 Python Windows 版本的 .whl 文件。

就我而言,它是pygame-1.9.2-cp36-cp36m-win_amd64.whl,因为我使用Python 3.6.0Windows 64位.

接下来,在任务栏上的搜索框中输入 cmd,然后按 Enter 键。将打开一个命令窗口。

在cmd中输入以下内容:

pip install setuptools
pip install wheel
pip install --upgrade setuptools
pip install --upgrade wheel

安装 pygame 时有两个选择:

选项 1 - 在 Python 文件夹中

将您之前下载的文件粘贴到 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 文件夹中(在我的例子中C:\Python\pygame-1.9.2-cp36-cp36m ‑win_amd64.whl),并且您复制了整个文件名,包括 .whl 扩展名,否则它将无法工作。

选项 2 - 在桌面上

将您之前下载的文件粘贴到桌面上。

如果您将 .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 扩展名,否则它将无法工作

这应该安装 pygame 1.9.2 并在 Python 3.6.0 上运行。

关于安装 Pygame 时 Python pip3 Egg_info 错误代码 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41338451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com