Anaconda下tensorflow冲突:AttributeError: module ‘tensorflow‘ has no attribute ‘compat‘

搞了半天是tensorflow2.1.0和默认安装的tensorflow-estimator2.1.0有问题,Anaconda安装的tensorflow-estimator2.1.0但是使用是变成了tensorflow-estimator2.2.0。

解决方法:

卸载 tensorflow和tensorflow-estimator2.1.0,重新安装tensorflow2.1.0

conda uninstall tensorflow

conda uninstall tensorflow-estimator

pip install tensorflow=2.1.0

问题讨论链接:(和大佬的方法略微不同)

 https://stackoverflow.com/questions/62622704/attributeerror-module-tensorflow-has-no-attribute-compat-when-loading-tf-co

 

你可能感兴趣的:(tensorflow,anaconda,bug)