python之五:再谈pip与conda安装——read timeout error

只说三件事:
1. 如何修改read timeout:
我搜索了很多timeout error的解决办法,他们叫我用镜像……
我用的就是镜像,用手机移动网络去下载tensorflow-gpu,下了足足有5次,每次在70%的时候报错,谁赔我流量费呀?!
网上有一个方法,如下截图:
在这里插入图片描述
我使用显示无这条语句,尝试用下面语句就可以了

pip install --default-timeout=200 -i https://pypi.doubanio.com/simple/ somepack

就可以了
2. pip下载的两个镜像地址:
pip install -i address somepack
https://pypi.tuna.tsinghua.edu.cn/simple
https://pypi.doubanio.com/simple/
3. conda下载需要添加哪些地址:
conda config --add channels
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

你可能感兴趣的:(python入门)