pip安装python库总是下载timeout超时解决方案

2016-12-11 Frank Python

方法一:

建个文件 ~/.pip/pip.conf, 内容如下

[global]
index-url = http://b.pypi.python.org/simple
[install]
use-mirrors = true
mirrors = http://b.pypi.python.org

http://pypi.python.org/mirrors

方法二:

添加—timeout参数

$ pip install xxx --timeout 6000

参考:

« 上一篇:Nodejs 测试之Tap | 下一篇:Ansible 实战»

发表评论 登录

Top