方法一、更换pychram中的下载源
顺利的话这是最快捷的方法,常用镜像源:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
修改方法参见https://blog.csdn.net/selfimpro_001/article/details/88670584
方法二、安装setuptools、pip和pygame
1、安装setuptools
下载setuptools源码setuptools-25.2.0.tar.gz
地址:https://pypi.python.org/pypi/setuptools
这是一个压缩文件,将其解压到桌面,并进入该文件夹
在解压后的文件夹内按shift+右键,打开powershell窗口,
输入python setup.py install 回车
安装成功后新开一个命令窗,输入easy_install 回车,进行检测
如果提示:
error: No urls, filenames, or requirements specified (see –help)
说明安装成功,它在提示你命令后面需要跟参数。
如果提示:
‘easy_install’ 不是内部或外部命令,也不是可运行的程序
或批处理文件。
请检查环境变量path是否配置了“C:\Python27\Scripts”
2、安装pip
可以到官网进行下载 https://pypi.org/project/pip/#files
在解压后的文件夹内按shift+右键,打开powershell窗口,输入命令:python setup.py install
如果失败,参见https://blog.csdn.net/tianjing0517/article/details/84875108,有其他方法。
3、安装pygame
先下载需要的pygame,推荐去https://pypi.org/project/pygame/#files
其他步骤参见https://www.cnblogs.com/caofu/p/8944277.html