module 'tensorflow.compat.v2.__internal__' has no attribute 'dispatch'怎么解决?
时间: 2023-07-23 22:12:41 浏览: 155
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误提示是说在tensorflow.compat.v2.__internal__模块中没有dispatch属性。可能是因为你的代码中调用了这个属性,但是这个属性在这个模块中不存在。你需要检查你的代码,看看是否有拼写错误或者其他语法错误。如果你确定这个属性是必须的,那么你需要查看你的tensorflow版本是否支持这个属性。
阅读全文