2)选择Project:PythonProject ---> Python Interpreter就可以直接看到pygame了,然后双击,也可以点击图中的 "+",进行搜索,然后点击左下角的Install Package按钮,然后就出现问题了!!! 问题:Try to run this command from the system terminal. Make sure that you use the correct version of 'pip...(由于后面解...
1. command+, 2. 输入 Project Interpreter 进行搜索 3. 点击下面“+”号 4. 输入pygame,点击install 进行安装
× Running setup.py install for pygame did not run successfully. │ exit code: 1 ╰─> [262 lines of output] running install /usr/lib/python3.11/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-...
2.如果出现WARNING: You are using pip version 19.2.3, however version 20.0.2 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.报错 说明你的pip版本太低 3.这时输入: python -m pip install -U pip # 当然,如果嫌弃下载速度慢同样可以考虑换源 安...
1)You are using pip version 9.0.1, however version 10.0.1 is available.You should consider upgrading via the 'python -m pip install --upgrade pip' command. 原因:这个问题表示pip工具版本过低,只要更新其版本即可,更新命令为:python -m pip install --upgrade pip(pip是在Python中用于安装Python包的...
1)You are using pip version 9.0.1, however version 10.0.1 is available. You should consider upgrading via the ‘python -m pip install –upgrade pip’ command. 原因:这个问题主要是版本没有更新的意思 解决方法:输入python -m pip install –upgrade pip命令更新一下就好了 ...
“command”: “python”, “args”: [“${file}”], “group”: { “kind”: “build”, “isDefault”: true }, “presentation”: { “echo”: true, “reveal”: “always”, “focus”: false, “panel”: “shared” }, “problemMatcher”: [] ...
输入以下指令安装:pip install pygame-1.9.3-cp36-cp36m-win32.whl 3.测试安装结果 4.问题 安装过程中出现了两个问题: 1)You are using pip version 9.0.1, however version 10.0.1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command. 原因:这个问题主...
You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9 -m pip install --upgrade pip' command. 看到这个不要害怕,就是让你把pip升级。如何升级呢?也很简单! 只需要在终端(MAC系统)或cmd(win系统)上,复制上面单引号里的内容,也就是下面这串,然后按enter键...
✨安装方法(pip install + 库名 + -i + 镜像地址) 可以在使用pip的时候加参数(即安装的镜像地址) 以豆瓣源为例安装 pygame.我要输入:pip install pygame -i 如果输入了镜像地址还不能够下载,显示无法信任此地址(Try to run this command from the system terminal. Make sure that you use the correct ...