欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-28 15:38:05
...

报错:AttributeError: module ‘tensorflow’ has no attribute ‘compat’
找了半天错误,发现问题了,如下:
AttributeError: module ‘tensorflow’ has no attribute ‘compat’,安装tensorflow-gpu=2.0.0出现的问题
这个是2.2版本的,所以你要先卸载它,然后再装2.0.0版本的:

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

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

相关标签: 编程debug问题