다음 코드를 실행했더니 다음과 같은 에러가 떴다.
import tensorflow as tf hello = tf.constant("Hello World!") sess = tf.Session() print(sess.run(hello))
sess = tf.Session() AttributeError: module 'tensorflow' has no attribute 'Session'. Did you mean: 'version'?