对于经常使用python的用户来说,使用pip安装软件包就是家常便饭,但是使用国外的源下载很慢,并且很容易出现下载安装出错的问题,因此把pip安装源替换为国内的,可以大幅度提高安装速度,并且可以减少出错率。
常见的国内源:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
使用http协议的源安装时会提示错误:
ERROR: Could not find a version that satisfies the requirement pandas (from versions: none)
ERROR: No matching distribution found for pandas
命令行中则必须指定参数:--trusted-host 域名
临时更改方法
在使用pip时加上-i参数即可
例如:pip install -i http://pypi.douban.com/simple/ pyspider
永久修改的方法
mkdir -p ~/.pip/
vim ~/.pip/pip.conf
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host = pypi.douban.com
修改pip/setup.py的源
vim ~/.pydistutils.cfg
[easy_install]
index_url = http://pypi.douban.com/simple