有一个本地服务器,网速很慢,下载老是出错,出现
pip._vendor.urllib3.exceptions.ReadTimeoutError:
HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
经过google,发现用下面的内容就可以完美解决
pip --default-timeout=100 install gevent
设置时间为100秒
pip._vendor.urllib3.exceptions.ReadTimeoutError:
HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
pip --default-timeout=100 install gevent
设置时间为100秒