Python中用pip安装类库时,因超时而安装失败
用pip安装matplotlib时,因超时而安装失败:
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
延长检测时间即可:
pip install --default-timeout=1000 install -U matplotlib