Ubuntu 14.04.2 上的 Tensorflow 平台不支持

Ubuntu 14.04.2 上的 Tensorflow 平台不支持

Tensorflow 是一款数值计算软件http://tensorflow.org/get_started/os_setup.md#binary_installation

安装说明简单地说pip install在 Ubuntu 上安装但我收到以下错误:

$ sudo -H pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl
tensorflow-0.5.0-cp27-none-linux_x86_64.whl is not a supported wheel on this platform.

我的 Ubuntu 版本:

alvas@ubi:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.2 LTS
Release:    14.04
Codename:   trusty

我的内核:

$ uname -a
Linux ubi 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

关于如何在 ubuntu 中安装 tensorflow 或解决平台问题有什么线索吗?

答案1

我遇到了同样的问题,因为我使用了错误的 pip 版本(python 3)。 我按照此处所述安装 pip2.7 来修复它:http://pip.readthedocs.org/en/stable/installing/

你基本上下载文件获取pip.py

并使用以下方式安装 pip2.7

python2.7 get-pip.py

现在你可以运行

python2.7 -m pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.5.0-cp27-none-linux_x86_64.whl

您需要成为超级用户才能安装 tensorflow。

干杯

相关内容