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’
找了半天错误,发现问题了,如下:
这个是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,以前没这个版本错误的,只是最近出现的。