一、我使用的是Anaconda自带的Jupyter编译器,详细的安装教程可以参考博文
二、之后打开Jupyter
三、进行测试
我的tensorflow使用的是2.0版本
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()a = tf.constant([1.0,2.0],name="a")
b = tf.constant([2.0,3.0],name="b")result = a + bsess = tf.compat.v1.Session()
sess.run(result)
效果图如下: