python pip更换镜像

helei 2020-5-15 655 5/15
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple  清华大学的pip源是官网pypi的镜像,每隔5分钟同步一次,重点推荐!!!
阿里云: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 https://pypi.tuna.tsinghua.edu.cn/simple 
永久修改pip镜像(推荐)
Linux系统:
修改 ~/.pip/pip.conf (没有就创建一个pip文件夹及pip.conf 文件。文件夹要加“.”,表示是隐藏文件夹),pip文件内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
Windows系统:
直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,并新建文件pip.ini文件,pip文件内容如下:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com 
- THE END -

helei

5月15日14:09

最后修改:2020年5月15日
0

非特殊说明,本博所有文章均为博主原创。