调皮的小五 发表于 2020-9-24 15:57:07

pip install pygame

pip安装pygame时报错没有pkg_resources模块
搜过网上的解决方法
例如
一、
1. 下载http://python-distribute.org/distribute_setup.py文件
2. 然后运行它python distribute_setup.py即可。

二、
sudo apt-get install python-pkg-resources python-setuptools --reinstall

三、
python -m pip install --upgrade pip setuptools wheel

但是都没解决问题,
哪位大神帮帮我吧{:10_269:}

Twilight6 发表于 2020-9-24 16:18:00

本帖最后由 Twilight6 于 2020-9-24 16:22 编辑


win键 + R 弹出运行窗口,输入 cmd 回车运行 cmd ,然后输入下面的代码安装 Pygame

python -m pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple

安装完成时候会出现 Successfully 的英文,代表安装成功

如果还是没有安装成功,那么你去这个链接 https://www.lfd.uci.edu/~gohlke/pythonlibs/#pygame 下载 Pygame 的 whl 文件,并将下载的 whl 文件保存在 桌面,拷贝完整的文件名

再次打开 cmd ,输入 下面代码并回车cd Desktop

然后输入 pip install 文件名.whl

这里的文件名就是下载到桌面的 whl 文件的文件名,然后继续等待安装

如果报错就发错误内容



调皮的小五 发表于 2020-9-24 16:42:59

Twilight6 发表于 2020-9-24 16:18
win键 + R 弹出运行窗口,输入 cmd 回车运行 cmd ,然后输入下面的代码安装 Pygame




大佬🐂🍺,万分感谢
页: [1]
查看完整版本: pip install pygame