pip 换镜像源

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/as472780551/article/details/85948481

临时使用: 
可以在使用pip的时候在后面加上-i参数,指定pip源 
eg:

pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple

永久修改: 
linux: 
修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

有的朋友要改pypi源 mac没有.pip文件夹很正常 因为要自己建

在终端进入目录:cd ~/

如果没有 .pip 文件夹,那么就要新建这个文件夹,mkdir .pip

然后在.pip 文件夹内新建一个文件 touch pip.conf,

最近阿里云不是很好用推荐清华大学的源 2018.7.27

[

global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=pypi.tuna.tsinghua.edu.cn


编辑 pip.conf 文件,写入阿里云

[global]

index-url = http://mirrors.aliyun.com/pypi/simple/

[install]

trusted-host=mirrors.aliyun.com

或者可以使用豆瓣的镜像:[

global]

index-url = http://pypi.douban.com/simple

[install]

trusted-host=pypi.douban.com


 

猜你喜欢

转载自blog.csdn.net/as472780551/article/details/85948481
今日推荐