Skip to content

Instantly share code, notes, and snippets.

@chakkritte
Created December 30, 2016 21:39
Show Gist options
  • Save chakkritte/e08e1b656aebe205d765df9065fe1e3c to your computer and use it in GitHub Desktop.
Save chakkritte/e08e1b656aebe205d765df9065fe1e3c to your computer and use it in GitHub Desktop.
Deep learning Part 1
1.Install python
https://www.python.org/downloads/release/python-352/
2.To install the CPU-only version of TensorFlow
C:\> pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl
3.Test your installation
$ 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
@ramaswamym1987
Copy link

Thank you so much bro.

@Poojadj
Copy link

Poojadj commented Jun 7, 2017

since my system is 32 bit, what should i type in cmd, it says not supported in this platform

@sidd5sci
Copy link

its not working in my pc

@vikskod
Copy link

vikskod commented Apr 19, 2018

@sidd5sci : I had same problem follow this video https://www.youtube.com/watch?v=BtDgICVvkHE it will help.

@Tresor-Koffi
Copy link

thank you dear

@Phreak91
Copy link

it worked...thanks man...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment