python pip下载速度慢的解决方法_解决pip安装太慢问题及pip/setup.py的源

对于经常使用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/

临时更改方法

在使用pip时加上-i参数即可例如:pip install -i http://pypi.douban.com/simple/ pyspider,这样就会从豆瓣这边的镜像去安装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

你可能感兴趣的:(python,pip下载速度慢的解决方法)