Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. conda create -n tensorflow python=3.5
  2. activate tensorflow
  3. pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.3.0-cp35-cp35m-win_amd64.whl
  4.  
  5. (tensorflow) C:Usersx90 python
  6. >>> import tensorflow as tf
  7. >>> hello = tf.constant('Hello, TensorFlow!')
  8. >>> sess = tf.Session()
  9. >>> print(sess.run(hello))
  10.  
  11. ImportError: No module named 'tensorflow'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement