pip安装库ReadTimeoutError: HTTPSConnectionPool(host=files.pythonhosted.org, port=443): Read timed out.

主要内容

成功解决python安装库过程中Read timed out报错。

问题

ReadTimeoutError:HTTPSConnectionPool(host=‘files.pythonhosted.org’, port=443): Read timed out.

解决方案

// 例如在给pip升级时:
pip --default-timeout=100 install --upgrade pip
// 安装库
pip --default-timeout=100 install xxx

猜你喜欢

转载自blog.csdn.net/qq_16488989/article/details/106934354
今日推荐