2016-12-01 :-(
_ [TensorFlow]Windows で TensorFlow
Windows 対応されたので入れた。Google Developers Blog: TensorFlow 0.12 adds support for Windows
anaconda をインストールする
https://www.continuum.io/downloads
TensorFlow をインストールする
スタート - メニュー - Anaconda - Anaconda Prompt を起動
インストール
pip install tensorflow
動作確認はいつもの Run TensorFlow from the Command Line
python >> import tensorflow as tf >> hello = tf.constant('Hello, TensorFlow!') >> sess = tf.Session() >> print(sess.run(hello)) 'Hello, TensorFlow!' >> a = tf.constant(10) >> b = tf.constant(32) >> print(sess.run(a + b)) 42
_ [udacity][TensorFlow]udacity TensorFlow の例題を Windows の jupyter で実行する
python は Anaconda でインストール済みとする。
TensorFlow ライブラリも pip でインストール済みとする。
https://github.com/tensorflow/tensorflow をダウンロードなり git clone なりする。
Anaconda Prompt を起動する。
udacity へ移動する。
cd tensorflow-master\tensorflow\examples\udacity
jupyter notebook を起動する。jupyter を起動したディレクトリがルートとなる(ようだ)。
jupyter notebook
[ツッコミを入れる]