本文介绍了通过 pip 安装 pygame 但我不断收到错误消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用 pip 在 Windows 10 上安装 pygame.我正在使用 python 3.当我运行 pip install pygame
时,我不断收到此错误:
I am trying to install pygame on windows 10 using pip. I am using python 3. I keep getting this error when I run pip install pygame
:
Collecting pygame
Using cached pygame-1.9.6.tar.gz (3.2 MB)
ERROR: Command errored out with exit status 1:
command: 'c:\users\aarav\appdata\local\programs\python\python39\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\aarav\\AppData\\Local\\Temp\\pip-install-4b04m745\\pygame\\setup.py'"'"'; __file__='"'"'C:\\Users\\aarav\\AppData\\Local\\Temp\\pip-install-4b04m745\\pygame\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\aarav\AppData\Local\Temp\pip-pip-egg-info-up4741kz'
cwd: C:\Users\aarav\AppData\Local\Temp\pip-install-4b04m745\pygame\
Complete output (17 lines):
WARNING, No "Setup" File Exists, Running "buildconfig/config.py"
Using WINDOWS configuration...
Download prebuilts to "prebuilt_downloads" and copy to "./prebuilt-x64"? [Y/n]Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\aarav\AppData\Local\Temp\pip-install-4b04m745\pygame\setup.py", line 194, in <module>
buildconfig.config.main(AUTO_CONFIG)
File "C:\Users\aarav\AppData\Local\Temp\pip-install-4b04m745\pygame\buildconfig\config.py", line 210, in main
deps = CFG.main(**kwds)
File "C:\Users\aarav\AppData\Local\Temp\pip-install-4b04m745\pygame\buildconfig\config_win.py", line 576, in main
and download_win_prebuilt.ask(**download_kwargs):
File "C:\Users\aarav\AppData\Local\Temp\pip-install-4b04m745\pygame\buildconfig\download_win_prebuilt.py", line 302, in ask
reply = raw_input(
EOFError: EOF when reading a line
----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
有人对我如何解决这个问题有建议吗?
Does anyone have a suggestion on how I can fix this?
推荐答案
从您的错误日志来看,您使用的是 Python 3.9.当前的 Pygame 版本 1.9.6 不支持 Python 3.9.您有多种选择:
From your error logs, you're using Python 3.9. The current Pygame release, 1.9.6 doesn't support Python 3.9. You have several options:
- 安装并使用 Python 3.8,然后
pip install pygame
应该可以工作了. - 安装 Pygame 2 开发版本,
pip install pygame==2.0.0.dev14
或pip install pygame --pre
获取最新的预发布版本. - 尝试使用 Christoph Gohlke 的第三方 pygame 轮,他提供与 cpython39 链接的 pygame 1.9.6.
- Install and use Python 3.8, then
pip install pygame
should work. - Install the Pygame 2 development version,
pip install pygame==2.0.0.dev14
, orpip install pygame --pre
to obtain the latest pre-release version. - Try a third party pygame wheel from Christoph Gohlke, he offers pygame 1.9.6 linked against cpython39.
这篇关于通过 pip 安装 pygame 但我不断收到错误消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!