RHEL 7 上的 Tensorflow 安装

Tensor Flow installation on RHEL 7

我是 Tensor Flow 的新手,正在尝试使用以下命令将其安装在我的 RHEL 7 机器上。由于某些限制,我无法将机器直接连接到互联网,因此使用从 Tensor Flow 站点下载的 whl 文件。

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

但是出现如下错误:

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)

我正在使用通过 anaconda 安装在我的机器上的 pip,并且还在机器上安装了 python 2.7

你能帮我解码错误吗?

我遇到了同样的问题。您的六个包需要更新。尝试:

easy_install --upgrade six

注意:我是在虚拟环境中执行此操作并且我有互联网。