安装pygame并不会==
python3 我按照网上教程输入 $ sudo pip3 install pygame 啥反应没有 你是什么系统? $ 不用输吧去终端,直接输入这个试试看吧?:
python -m pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple
出现 Successfully 就是安装成功了
Twilight6 发表于 2020-8-14 11:40
去终端,直接输入这个试试看吧?:
什么是终端 我在python3里输入了 还是invalid syntax 蓝大伟 发表于 2020-8-14 12:16
什么是终端 我在python3里输入了 还是invalid syntax
Windows的终端是cmd 蓝大伟 发表于 2020-8-14 12:16
什么是终端 我在python3里输入了 还是invalid syntax
你在Python3 命令行里面,你输入 exit() 退出来,然后再试试上面给的命令。 蓝大伟 发表于 2020-8-14 12:16
什么是终端 我在python3里输入了 还是invalid syntax
按下键盘的 Win 键 + R ,会弹窗运行窗口,输入 cmd 然后回车,就会打开终端,然后输入 4l 的代码回车即可
你是ub系统吗? 按Alt+F2打开命令输入框,输入“gnome-terminal”,然后按回车键即可打开终端 Twilight6 发表于 2020-8-14 11:40
去终端,直接输入这个试试看吧?:
也试了,不好使呀 蓝大伟 发表于 2020-8-14 15:26
也试了,不好使呀
把你说的不好使的报错内容发上来 Twilight6 发表于 2020-8-14 15:27
把你说的不好使的报错内容发上来
在终端就是没反应呀 Twilight6 发表于 2020-8-14 15:27
把你说的不好使的报错内容发上来
C:\Users\tlan2>python -m pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple
C:\Users\tlan2>
就像这样 蓝大伟 发表于 2020-8-14 16:29
在终端就是没反应呀
你编辑器是什么? IDLE 吗?
那用这个办法吧,去这里下载下 pygame 的 whl 文件:https://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame
这里面带 cp38 意思就是 Python 3.8 版本的 ,cp39 就是指 Python3.9 版本的
还有就是你电脑是 64 位的就下载 64 位的 ,32 位的就下载 32 的
然后将这个文件保存到桌面,打开终端,输入 cd Desktop
然后还是在终端输入 pip install 下载的文件名.whl
将这个代码中的下载的文件名,替换为你下载的文件名即可,注意后缀一定要带上 whl
Twilight6 发表于 2020-8-14 16:37
你编辑器是什么? IDLE 吗?
那用这个办法吧,去这里下载下 pygame 的 whl 文件:https://www.lfd ...
C:\Users\tlan2>cd Desktop
C:\Users\tlan2\Desktop>pip install pygame-1.9.6-cp38-cp38-win_amd64.whl
'pip' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
下载之后又出问题了
蓝大伟 发表于 2020-8-14 18:07
C:%users\tlan2>cd Desktop
C:%users\tlan2\Desktop>pip install pygame-1.9.6-cp38-cp38-win_amd64.w ...
那这就是你 Python 环境没有配置好
两个办法
1.先卸载原先的Python,然后重装 Python 时候勾选最下端的 PATH选项 如图:
https://xxx.ilovefishc.com/album/202005/18/112626rjbqdvdj4zvd41n3.png
然后正常安装,即可,重新去输入 pip 的代码
2.手动配置系统环境:https://blog.csdn.net/pdcfighting/article/details/80983184
本帖最后由 小黑狼5 于 2020-8-16 09:41 编辑
图片粘贴不上了。。。也不能删帖吗 Twilight6 发表于 2020-8-14 18:35
那这就是你 Python 环境没有配置好
两个办法
C:\Users\tlan2>python -m pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting pygame
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/d2/ba/8e4f8fae51bd9d5766f1f20c9ce451e93929ee9efdd2784b1a7b469ea76e/pygame-1.9.6-cp38-cp38-win32.whl (4.4 MB)
|████████████████████████████████| 4.4 MB 1.1 MB/s
Installing collected packages: pygame
Successfully installed pygame-1.9.6
WARNING: You are using pip version 20.1.1; however, version 20.2.2 is available.
You should consider upgrading via the 'C:\Users\tlan2\AppData\Local\Programs\Python\Python38-32\python.exe -m pip install --upgrade pip' command.
终于弄明白了 PS C:\Users\a3045\Desktop\pygame-1.9.6> python -m pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting pygame
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/0f/9c/78626be04e193c0624842090fe5555b3805c050dfaa81c8094d6441db2be/pygame-1.9.6.tar.gz (3.2 MB)
|████████████████████████████████| 3.2 MB 1.1 MB/s
ERROR: Command errored out with exit status 1:
command: 'C:\Python39\python.exe' -c 'import sys, setuptools, tokenize; sys.argv = '"'"'C:\\Users\\a3045\\AppData\\Local\\Temp\\pip-install-63u0ruj0\\pygame\\setup.py'"'"'; __file__='"'"'C:\\Users\\a3045\\AppData\\Local\\Temp\\pip-install-63u0ruj0\\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\a3045\AppData\Local\Temp\pip-pip-egg-info-h8ynlaah'
cwd: C:\Users\a3045\AppData\Local\Temp\pip-install-63u0ruj0\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"? Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\a3045\AppData\Local\Temp\pip-install-63u0ruj0\pygame\setup.py", line 194, in <module>
buildconfig.config.main(AUTO_CONFIG)
File "C:\Users\a3045\AppData\Local\Temp\pip-install-63u0ruj0\pygame\buildconfig\config.py", line 210, in main
deps = CFG.main(**kwds)
File "C:\Users\a3045\AppData\Local\Temp\pip-install-63u0ruj0\pygame\buildconfig\config_win.py", line 576, in main
and download_win_prebuilt.ask(**download_kwargs):
File "C:\Users\a3045\AppData\Local\Temp\pip-install-63u0ruj0\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.
PS C:\Users\a3045\Desktop\pygame-1.9.6>
页:
[1]