AttributeError: module 'tensorflow.compat.v2.__internal__' has no attribute 'dispatch'
时间: 2023-07-14 19:52:33 浏览: 303
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是因为您正在使用的Tensorflow版本不兼容所导致的。`dispatch`是Tensorflow 2.x中的一个功能,但是在Tensorflow 1.x中不支持。
请检查您安装的Tensorflow版本是否正确,并确保您的代码与所安装的版本兼容。如果您使用的是Tensorflow 1.x,请尝试升级到Tensorflow 2.x以解决此问题。如果您使用的是Tensorflow 2.x,请检查您的代码是否正确导入Tensorflow,并确保没有其他版本的Tensorflow与您的代码冲突。
阅读全文