创建的虚拟环境中安装的是python3.6.10,tensorflow1.13.1,numpy1.16.0,运行代码
import tensorflow as tf# import os# os.environ['TF_CPP_MIN_LOG_LEVEL']='2'hello = tf.constant('Hello, TensorFlow!')sess = tf.Session()print(sess.run(hello))
没有报错,但是也没有结果