TensorFlowに挑戦2
続けて。。TensprFlowのインストール。。
CPU実行バイナリ、、とやらをダウンロードします。
CPU実行バイナリ、、とやらをダウンロードします。
コマンドは
$ docker run -it -p 8888:8888 -p 6006:6006 –name tf gcr.io/tensorflow/tensorflow /bin/bash
$ docker run -it -p 8888:8888 -p 6006:6006 –name tf gcr.io/tensorflow/tensorflow /bin/bash
おお、何かやっとる。。。。
(図1)
(図1)
同じコンテナを再起動する場合は、これだと。
> docker start -i tf
(図2)
次にTensorFlowの動作確認
今、コンテナが立ち上がっている状態だと。
root@920195b1f780:/notebooks#
のコマンド待ちだからそうかな??
今、コンテナが立ち上がっている状態だと。
root@920195b1f780:/notebooks#
のコマンド待ちだからそうかな??
Pythonを起動
実験。。。
root@920195b1f780:/notebooks# python
Python 2.7.6 (default, Oct 26 2016, 20:30:19)
[GCC 4.8.4] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
>>> import tensorflow as tf
>>> hello = tf.constant(‘Hello World 2017/02/08 ‘)
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello World 2017/02/08
[GCC 4.8.4] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
>>> import tensorflow as tf
>>> hello = tf.constant(‘Hello World 2017/02/08 ‘)
>>> sess = tf.Session()
>>> print(sess.run(hello))
Hello World 2017/02/08
(図3)
計算も!
>>> a = tf.constant(1000)
>>> b = tf.constant(1001000)
>>> print(sess.run(a+b))
1002000
>>> a = tf.constant(1000)
>>> b = tf.constant(1001000)
>>> print(sess.run(a+b))
1002000
(図4)
一応、OKみたいね!
TensorFlowのインストール。
Pythonのバージョンに応じて、、、だって?
2.7.13か。。。
(図5)
Ubuntuの場合、コマンドは、
$ docker run -it ubuntu bash
でUbuntu上げておいて、、、、
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.11.0rc2-cp27-none-linux_x86_64.whl
$ sudo pip install –upgrade $TF_BINARY_URL
Python環境のインストールはこれ。
$ sudo apt-get install python-pip python-dev
pipをインストールしてみるか。。。
https://websetnet.com/ja/install-pytonpip-ubuntu-1510-ubuntu-1504-ubuntu-1404/
を参考に下記のコマンドを。
$ sudo apt-get update
$ sudo apt-get upgrade
$ apt-get -y install python-pip
$ sudo apt-get upgrade
$ apt-get -y install python-pip
$ apt-get -y install python-dev
も。。。。 では、再度、
$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.11.0rc2-cp27-none-linux_x86_64.whl
$ sudo pip install –upgrade $TF_BINARY_URL
何かインストールしとる。。。
明日、TendorFlowに必要なライブラリのインストールを!!!
以上