python 安装pandas库
出现ReadTimeoutError:
ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
原因
安装太慢,超时
解决
方案1:挂VPN
方案2:加--default-timeout=100
等待,即
pip install --default-timeout=100 pandas
出现ReadTimeoutError:
ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
安装太慢,超时
方案1:挂VPN
方案2:加--default-timeout=100
等待,即
pip install --default-timeout=100 pandas