解决pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.问题,
今天安装alphaet包时发现,直接pip install alphabet会报错,报错信息是:
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
一脸懵逼如我,记得pip installconfig已经改成清华源了哇,去清华源一看:
在这里插入图片描述我勒个去,难道是myz点燃了Anaconda了??
别急,一行代码解决问题,就是会很慢。。。。
pip install --default-timeout=100 alphabet
如果想制定安装源,有两种方案:
1、直接指定特定源,
感谢评论区@qq_37923563提出的指定清华源:

pip --default-timeout=100 install tensorflow==2.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 

感谢评论区@Book of leaves提出的指定豆瓣源:

pip --default-timeout=100 install tensorflow==2.0.0 -i https://pypi.douban.com/simple

Ref:
1、https://yq.aliyun.com/articles/619208

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐