PYPI 国内源
Posted 写代码的运维妞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PYPI 国内源相关的知识,希望对你有一定的参考价值。
搬砖自http://www.cnblogs.com/sunnydou/p/5801760.html
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
使用方法:
pip install -i http://mirrors.aliyun.com/pypi/simple paramiko
如报错说网址不被不信任,根据提示添加参数后如下:
python3.5 -m pip install -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com paramiko
如果想配置成默认的源,方法如下:
需要创建或修改配置文件(一般都是创建),
linux的文件在~/.pip/pip.conf,加入如下行:
[global] index-url = http://pypi.douban.com/simple [install] trusted-host=pypi.douban.com
windows在%HOMEPATH%\\pip\\pip 中加入上述行
以上是关于PYPI 国内源的主要内容,如果未能解决你的问题,请参考以下文章