AttributeError: module 'tensorflow' has no attribute 'TensorShape'
时间: 2023-10-02 14:13:39 浏览: 90
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是由于导入的 TensorFlow 版本过低造成的。`TensorShape` 是 TensorFlow 2.x 中的一种数据类型,但在 TensorFlow 1.x 版本中并不存在。
要解决这个问题,可以尝试升级 TensorFlow 到最新版本。可以使用以下命令来更新 TensorFlow:
```
pip install --upgrade tensorflow
```
如果你使用的是 Conda 环境,则可以使用以下命令:
```
conda upgrade tensorflow
```
确保你已经正确安装了 TensorFlow,并且导入的模块与安装的版本兼容。如果问题仍然存在,请提供更多的代码和错误信息,以便我能够更好地帮助你解决问题。
阅读全文