安装tensorflow时如何解决问题:HTTPSConnectionPool(host ='files.pythonhosted.org',port = 443):读取超时

时间:2019-12-24 07:45:22

标签: python-3.x tensorflow

我想按centos中的用户帐户安装tensorflow。我使用以下命令: python3 -m pip install tensorflow --user 但是我得到了错误:

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

我已经尝试过curl "https://files.pythonhosted.org";没问题,我可以获得一些数据。 这样我的机器可以访问该网站,但是我的安装命令出了什么问题?

1 个答案:

答案 0 :(得分:0)

使用超时选项。

这是命令

python -m pip install --default-timeout=100 tensorflow --user