RuntimeError: The Session graph is empty. Add operations to the graph before calling run().

安装tensorflow后,进行测试

import tensorflow as tf
hello = tf.constant('hello,tensorflow!')
sess = tf.Session()
print(sess.run(hello))

但是发现有错误,因为版本问题,我的tensorflow版本是2.0.0,比较新

可以通过下面的方法查看tensorflow版本

RuntimeError: The Session graph is empty. Add operations to the graph before calling run()._第1张图片

所以第三句要改成

sess = tf.compat.v1.Session()

但是还是不行,又出现了另一个错误

RuntimeError: The Session graph is empty. Add operations to the graph before calling run()._第2张图片

但是,作为一个新手不太会改了,感觉是因为改成tf.compat.v1.Session()出的问题,然后print(sess.run(hello))不能输出。

所以只能用最原始的方法,降版本,先卸载

pip uninstall tensorflow

然后再用国内镜像源下载指定版本(速度快很多,直接用国外很慢而且容易失败),这是1.5版本的tensorflow,也可以根据个人需要来修改后面的数字

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==1.5.0

然后等一会,安装成功后,再用回刚才的方法查看版本,已经是1.5.0了

然后测试tensorflow

RuntimeError: The Session graph is empty. Add operations to the graph before calling run()._第3张图片

我使用jupyter notebook来测试的,用终端cmd也可以

你可能感兴趣的:(tensorflow,python,jupyter,notebook)