LoginSignup
52
55

More than 5 years have passed since last update.

UbuntuにTensorFlowをインストール

Last updated at Posted at 2016-03-29

パッケージアップデート

$ sudo apt-get update

Pythonのバージョン確認

$ python -V
Python 2.7.9

pipインストール

$ sudo apt-get install python-pip python-dev

TensorFlowインストール

# CPUのみ 今回はこっち
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl

# GPUはこっち
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl

テストで動かしてみる

$ python

>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> sess.run(hello)
Hello, TensorFlow!
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> sess.run(a+b)
42
>>>

うごいた

52
55
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
52
55