AttributeError: module ‘tensorflow‘ has no attribute ‘app‘

看了一些博主的方法,我采用的方法是:
(1)把tensorflow先升级: pip install --upgrade tensorflow-cpu
(发现其实我的版本已经是最高的了)
AttributeError: module ‘tensorflow‘ has no attribute ‘app‘_第1张图片
(2)将import tensorflow as tf 改为 import tensorflow.compat.v1 as tf
由于tensorflow版本的原因,我的tensorflow的版本是2.5.0的,而源代码是tensorflow1.几版本的,所以只需要将源文件里面的
import tensorflow as tf
改为 import tensorflow.compat.v1 as tf

在这里插入图片描述

参考链接: https://blog.csdn.net/weixin_41012399/article/details/103654641.

你可能感兴趣的:(pychar安装包问题,tensorflow)