pip._vendor.urllib3.exceptions.ReadTimeoutError
使用pip安装第三方库时遇到: pip._vendor.urllib3.exceptions.ReadTimeoutError HTTPSConnectionPool(host=files.pythonhosted.org port=443) Read timed out
,这种一般是网络不佳所致
解决
第一种
在
pip3 install xxxx
后面加上-i 镜像地址
国内主要镜像地址:
1 | 清华:https://pypi.tuna.tsinghua.edu.cn/simple |
比如安装
pipenv
:
1 | pip3 install pipenv -i https://pypi.tuna.tsinghua.edu.cn/simple |
第二种
用电脑连接手机热点
然后重新
pip3 install xxxx