python安装库报错
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
主要原因是因为网络的问题。
解决方法:
执行命令
pip --default-timeout=100 install gevent
然后重新安装,解决。
python安装库报错
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
主要原因是因为网络的问题。
解决方法:
执行命令
pip --default-timeout=100 install gevent
然后重新安装,解决。