Python使用pip安装速度慢换源
Posted lfotest
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python使用pip安装速度慢换源相关的知识,希望对你有一定的参考价值。
在是使用pip安装的时候总是超时
换源
豆瓣:http://pypi.douban.com/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple
临时使用:
可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple
例如:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple gevent
永久修改:
linux下,修改 ~/.pip/pip.conf , 修改 index-url至tuna,内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
windows下,在user目录中创建一个pip目录,如:C:Usersxxpip,新建文件pip.ini,内容如下
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
以上是关于Python使用pip安装速度慢换源的主要内容,如果未能解决你的问题,请参考以下文章