mac更改pip源,没有.pip(即linux ubuntu python pip 换源方法教程)

转载:https://blog.csdn.net/xx1710/article/details/51893117

有的朋友要改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/fighting_sxw/article/details/89446037
今日推荐