Tensor Flow installation on RHEL 7

喜你入骨 提交于 2019-12-12 18:28:15

问题


I am new to Tensor Flow and trying to install it on my RHEL 7 machine using the below command. I cannot connect the machine directly to internet due to some restrictions so using a whl file downloaded from Tensor flow site.

pip install tensorflow-0.5.0-cp27-none-linux_x86_64.whl

But getting error as below :

Could not find a version that satisfies the requirement six>=1.10.0 (from tensorflow==0.5.0) (from versions: ) No matching distribution found for six>=1.10.0 (from tensorflow==0.5.0)

I am using pip installed on my machine through anaconda and have python 2.7 installed on the machine as well

Can you please help me to decode the error?


回答1:


I had the same issue. Your six package needs to be updated. Try:

easy_install --upgrade six

Note: I am doing this from within a virtual environment and I do have internet.



来源:https://stackoverflow.com/questions/33735833/tensor-flow-installation-on-rhel-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!