【我参加NVIDIA Sky Hackathon】pip安装过程中出现read time out的解决办法

延长timeout时间再次报错可能性大,且下载速度堪忧,因此只介绍将pip临时换源到国内镜像的方法

#使用豆瓣的源
$pip install --index-url https://pypi.douban.com/simple scipy
#使用清华大学的源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple –upgrade tensorflow-gpu

其他源
(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学http://pypi.hustunique.com/

pip永久换源步骤

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

你可能感兴趣的:(pip,python,开发语言)