import tensorflow_hub as hub 报错
问题
只要运行导入代码就报错
import tensorflow_hub as hub
错误原因
AttributeError: module 'tensorflow.tools.docs.doc_controls' has no attribute 'inheritable_header'
版本
我的是
tensorflow:2.6版本
tensorflow_hub :0.12.0
解决办法
貌似有两种
1.安装 tensorflow-estimator==2.6.0
pip install -U tensorflow-estimator==2.6.0
tensorflow-estimator版本一定要得是2.6.我安装了2.7(2021/12 最新2.7)的不行。重新安装2.6。安装2.6的然后就可以运行了。我就是这样子解决的
2. tensorflow 降级到2.5
pip install -U tensorflow==2.5.1
有看到说可行。但是我没有尝试