解决pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool
·
解决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 install
的config
已经改成清华源了哇,去清华源一看:
我勒个去,难道是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
更多推荐
已为社区贡献8条内容
所有评论(0)