pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘,

pip安装第三方库时出现read timed out 问题
BEGIN:

问题:安装requests第三方库出现超时问题

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

解决方案:

pip --default-timeout=1000 install -U requests

END.

猜你喜欢

转载自blog.csdn.net/qq_41299338/article/details/108468668