安装pandas库出现ReadTimeoutError

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

参考来源:https://stackoverflow.com/questions/43298872/how-to-solve-readtimeouterror-httpsconnectionpoolhost-pypi-python-org-port

你可能感兴趣的:(安装pandas库出现ReadTimeoutError)