我想按centos中的用户帐户安装tensorflow。我使用以下命令:
python3 -m pip install tensorflow --user
但是我得到了错误:
HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out
我已经尝试过curl "https://files.pythonhosted.org"
;没问题,我可以获得一些数据。
这样我的机器可以访问该网站,但是我的安装命令出了什么问题?
答案 0 :(得分:0)
使用超时选项。
这是命令
python -m pip install --default-timeout=100 tensorflow --user