Move the mouse to the title part of the command prompt window, right-click and select "Properties" Check all the "Edit Options" checkboxes
$ python -V
Python 2.7.6 is installed
$ sudo apt-get install python-pip python-dev
Use about 155 MB Enter "Y"
$ sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
Start python
$ python
>>> import tensorflow as tf
>>> sess = tf.Session()
>>> a = tf.constant(2)
>>> b = tf.constant(3)
>>> sess.run(a+b)
5
>>>
Try using Bash on Windows 10 1 (http://qiita.com/rightoffreedom/items/3265eed2a3d2a207f594)
Recommended Posts