pip download timeout 解决方法

使用镜像源

更换国内的pypi源:

如:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple sphinx_rtd_theme
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade tensorflow-gpu

更改超时时间

也可以通过命令行选项更改 timeout 的时间,默认为 15 秒。如:

pip install --timeout=120 sphinx_rtd_theme

参考:

pip download timeout 下载慢,超时解决方法

你可能感兴趣的:(Python,docs)