解决pip安装太慢问题及pip/setup.py的源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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
以上是关于解决pip安装太慢问题及pip/setup.py的源的主要内容,如果未能解决你的问题,请参考以下文章