169_TensorFlow_from_google_AI_4_jupyter notebook

Jupyter nootbookを使ってみる。
MS-DOSのコマンドプロンプトからコマンド
> jupyter notebook
Webが勝手にあがります。OKね。
右上でPython2を選択すると、新規タブが表示
(図1)
ファイル名変更
(図2)
(図3)
セルにコードを書き込んでいく、、、と。
import tensorflow as tf
hello = tf.constant(‘Hello World on 2017/02/10’)
sess = tf.Session()
print(sess.run(hello))
a = tf.constant(100)
b = tf.constant(10000)
print(sess.run(a+b))
(図4)
Ctrl+Enterで実行かな??、、、はい、エラー!
(図5)
> docker run -it ubuntu bash
やったけど。。。うーーーーん、まだエラーか。。。
(図6)
ちょっと今日は寝るか。。。疲れた。。。
また明日。。。
以上