.whl 不是此平台支持的轮子

.whl 不是此平台支持的轮子

我的ubuntu版本是:

Distributor ID: Ubuntu
Description:    Ubuntu 16.04.3 LTS
Release:    16.04
Codename:   xenial

我正在使用 Python 3.5

我正在尝试安装 tensorFlow。我尝试了很多方法来安装它,但都没有用,甚至尝试过像这样更改名称在 Ubuntu 16.04 上使用 Python3 安装 TensorFlow尝试了各种方法。无法安装。甚至尝试使用 anaconda 和虚拟环境,都无济于事。我总是收到消息:

tensorflow-1.3.0-cp35-none-linux_x86_64.whl is not a supported wheel on this platform.
tensorflow-1.3.0-cp35-cp35m-manylinux1_x86_64.whl is not a supported wheel on this platform.

如同 tensorflow 教程中所述:

root@willowdodger-Vostro-3550:/usr/local/lib/python3.5# sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.3.0-cp35-cp35m-linux_x86_64.whl
tensorflow-1.3.0-cp35-cp35m-linux_x86_64.whl is not a supported wheel on this platform.

请帮我安装 tensorflow。

答案1

Tensorflow 不支持 x32 位系统,仅支持 x64 位系统,而我的 ubuntu 是 x32 位的,因此我无法安装。有一些肮脏的黑客可以使用它们,但我决定在 x64 位系统的 ubuntu 中进一步研究。

相关内容