8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Raspberry Pi に python3 用の tensorflow をインストール

Last updated at Posted at 2017-06-10

以下の方法で、Rasbperry P2, P3 どちらにもインストール出来ました。

前提のソフト

sudo apt install python3-pip
sudo apt install python3-dev
sudo apt install python3-numpy
sudo apt install python3-scipy
sudo apt install python3-pandas
sudo apt install python3-h5py

ダウンロード

wget https://github.com/samjabrahams/tensorflow-on-raspberry-pi/releases/downloa
d/v1.1.0/tensorflow-1.1.0-cp34-cp34m-linux_armv7l.whl

インストール

sudo pip3 install tensorflow-1.1.0-cp34-cp34m-linux_armv7l.whl

Raspbian GNU/Linux 9 (stretch) の場合は

mv tensorflow-1.1.0-cp34-cp34m-linux_armv7l.whl tensorflow-1.1.0-cp35-cp35m-linux_armv7l.whl
sudo pip3 install tensorflow-1.1.0-cp35-cp35m-linux_armv7l.whl

インストールの確認

Arch Linux に tensorflow をインストールする
tensorflow の簡単なサンプル

画像認識のサンプル

TensorFlow Models の使い方

8
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?