python技巧 — pip 延迟 host=443 的解决办法


 如果在使用Terminal 安装python库,出现报错,  urllib3.exceptions.ReadTimeoutError :

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

解决办法:

 pip --default-timeout=1000 install -U 模块名
例如
pip --default-timeout=1000 install -U matplotlib

然后库会继续安装。