I already install tensorflow with pip.
I can run the code in python IDE, and success in the shell
But when I use the Atom with atom runner, it always says “ImportError: No module named tensorflow”
Can anybody tell me what’s going on?
import tensorflow as tf
hello = tf.constant(‘Hello, TensorFlow!’)
sess = tf.Session()
print(sess.run(hello))