赞
踩
2021年10月13日
你的报错界面和我一样的话,就看我的解决办法吧
向上翻翻就可以发现
什么意思呢?
这个问题主要是网络上的教程过于老化,现在python3.5都放弃维护了,但是你还配置3.5的环境,肯定错呀!!!!
解决办法
1.退出建立的环境
deactivate
2.删除此环境
conda remove -n tensorflow --all(加粗改成你的环境名,我设置的是tensorflow)
3.重新建立环境
conda create -n tensorflow1 python=3.8
4.安装tensorflow
pip install tensorflow
5.测试tensorflow(用我的测试吧,网上好多的教程的测试代码都已经老掉牙了,根本没办法用)
import tensorflow as tf
tf.compat.v1.disable_eager_execution()
hello = tf.constant('hello,tensorflow')
sess= tf.compat.v1.Session()
print(sess.run(hello))
参考链接:可以看看这位大兄弟,他有反思(24条消息) RuntimeError: The Session graph is empty. Add operations to the graph before calling run().解决方法_爱学习的人工智障的博客-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。