AttributeError: module ‘tensorflow’ has no attribute ‘compat’,安装tensorflow-gpu=2.0.0出现的问题

报错:AttributeError: module ‘tensorflow’ has no attribute ‘compat’
找了半天错误,发现问题了,如下:
在这里插入图片描述
2020年10月5号更新
tensorflow==2.1.0版本也出现了这个问题,也用相同方法改正,注意版本就行了!!!
个是2.2版本,所以你要装2.0.0版本的:

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

或者

conda install tensorflow-estimator==2.0.0

这样就解决问题了。这个安装估计是个bug,以前没这个版本错误的,只是最近出现的。

有用请点个赞!!
本站所有文章均为原创,欢迎转载,请注明文章出处:https://blog.csdn.net/weixin_45092662。百度和各类采集站皆不可信,搜索请谨慎鉴别。技术类文章一般都有时效性,本人习惯不定期对自己的博文进行修正和更新,因此请访问出处以查看本文的最新版本。

你可能感兴趣的:(编程debug问题,Tensorflow2.x学习,tensorflow2.0)