AttributeError: module 'tensorflow._api.v2.train' has no attribute 'NewCheckpointReader'
时间: 2023-11-08 12:04:35 浏览: 206
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是由于 TensorFlow 版本不兼容导致的。请确保你正在使用的 TensorFlow 版本与代码中的要求相匹配。
如果你使用的是较新的 TensorFlow 版本,请注意一些 API 可能已经被弃用或更改了。在这种情况下,你需要更新你的代码以适应新版本的 TensorFlow。
如果你使用的是旧版本的 TensorFlow,你可以尝试升级到新版本来解决这个问题。你可以使用以下命令来更新 TensorFlow:
```
pip install --upgrade tensorflow
```
阅读全文