web-dev-qa-db-ja.com

Ubuntu 14.04.2のTensorflowでサポートされていないプラットフォーム

Tensorflowは数値計算ソフトウェアです http://tensorflow.org/get_started/os_setup.md#binary_installation

インストール手順には、Ubuntuでpip installと書かれていますが、次のエラーが表示されます。

$ 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にテンソルフローをインストールする方法やプラットフォームの問題を解決する方法についての手がかりはありますか?

5
alvas

間違ったpipバージョン(python 3)を使用したため、同じ問題が発生しました。ここで説明するようにpip2.7をインストールすることで修正しました。 http://pip.readthedocs.org/en/stable/installing/

基本的にファイルをダウンロードしますget-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がインストールされます。

乾杯

4
Christof