Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'tensorflow' has no attribute '__version__'
时间: 2023-12-16 08:04:24 浏览: 22
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误可能是由于你的 TensorFlow 版本过低导致的。可以尝试升级 TensorFlow,执行以下命令:
```
pip install --upgrade tensorflow
```
如果你已经安装了最新版本的 TensorFlow,可能是因为在安装 TensorFlow 之前安装了其他依赖项,导致 TensorFlow 与其他包冲突。此时可以尝试创建一个干净的 Python 环境,并在其中安装 TensorFlow。
阅读全文