Java教程

ubuntu pip换成国内源

本文主要是介绍ubuntu pip换成国内源,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

ubuntu pip换成国内源

mkdir ~/.pip
vim ~/.pip/pip.conf

填入以下内容:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = mirrors.aliyun.com

保存退出后

pip install update

之后程序下载既可以使用国内镜像下载了,速度非常快!
其他pip镜像:

阿里云http://mirrors.aliyun.com/pypi/simple/
中国科技大学https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣http://pypi.douban.com/simple
Python官方https://pypi.python.org/simple/
v2exhttp://pypi.v2ex.com/simple/
×××http://pypi.mirrors.opencas.cn/simple/
清华大学https://pypi.tuna.tsinghua.edu.cn/simple/
这篇关于ubuntu pip换成国内源的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!