pip安装python库总是下载超时,更换国内镜像源

in Python with 0 comment

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

2.#vim .pip/pip.conf

[global]
timeout = 6000
index-url = http://pypi.douban.com/simple/ 
[install]
use-mirrors = true
mirrors = http://pypi.douban.com/simple/ 
trusted-host = pypi.douban.com

OK,设置完毕,赶紧试试吧!

Responses