AttributeError: module 'tensorflow' has no attribute 'Session'错误解决

Anaconda刚安装好Tensorflow以后运行

import tensorflow as tf
tf.Session

报错AttributeError: module ‘tensorflow’ has no attribute ‘Session’。这其实不是安装错误,是因为在新的Tensorflow 2.0版本中已经移除了Session这一模块,改换运行代码即可:

tf.compat.v1.Session()

就可以获得与原先相同的输出信息。如果觉得不方便,也可以改换低版本的Tensorflow,直接用pip即可安装

sudo pip install tensorflow==1.14

你可能感兴趣的:(Python)