pip下载加速的方式
Posted cpl9412290130
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip下载加速的方式相关的知识,希望对你有一定的参考价值。
两种方式
一、临时方式
可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.edu.cn/simple。
例如下载或者更新:
下载:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tornado
更新:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade tornado
二、永久修改
如果你不想临时使用,想永久性的,那么可以这么做:
Ubuntu环境
新建这么一个目录和文件:~/.pip/pip.conf,然后写入以下内容:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
设置完后,保存,即可使用。
国内的一些源
新版ubuntu要求使用https源,要注意,
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云: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下载加速的方式的主要内容,如果未能解决你的问题,请参考以下文章