当前位置: 代码迷 >> 综合 >> 成功解决.ReadTimeoutError: HTTPSConnectionPool(host=‘pypi.tuna.tsinghua.edu.cn‘, port=443): Read timed o
  详细解决方案

成功解决.ReadTimeoutError: HTTPSConnectionPool(host=‘pypi.tuna.tsinghua.edu.cn‘, port=443): Read timed o

热度:83   发布时间:2024-03-07 22:10:00.0

成功解决raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Read timed out.

 

 

目录

解决问题

解决思路

解决方法


 

 

 

 

解决问题

raise ReadTimeoutError(self._pool, None, "Read timed out.")
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Read timed out.

 

 

 

解决思路

导致读取超时错误

 

 

 

解决方法

设置超时参数,加长时间

pip --default-timeout=1000 install name

 

 

 

 

 

 

  相关解决方案