美文网首页
安装pandas库出现ReadTimeoutError

安装pandas库出现ReadTimeoutError

作者: 正在学习的Yuki | 来源:发表于2020-07-21 21:52 被阅读0次

    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

          本文链接:https://www.haomeiwen.com/subject/kkxgkktx.html