attributeerror: module 'tensorflow' has no attribute '__version__'
时间: 2023-04-21 08:05:40 浏览: 195
这个错误提示是说在 TensorFlow 模块中找不到 __version__ 属性。可能是因为 TensorFlow 模块没有被正确安装或导入。建议检查 TensorFlow 的安装和导入情况,确保正确安装并正确导入 TensorFlow 模块。
相关问题
AttributeError: module 'tensorflow' has no attribute '__version__'
这个错误是由于 tensorflow 模块导入不成功导致的。请检查你的 tensorflow 安装是否正确或者版本是否过老。你可以通过在 Python 交互环境中输入 import tensorflow; print(tensorflow.__version__) 来检查 tensorflow 版本。如果 tensorflow 安装正常,但版本过老,可以通过 pip install --upgrade tensorflow 命令将 tensorflow 升级到最新版本。
attributeerror: module 'tensorflow' has no attribute '_version_'
这个错误提示是说在 TensorFlow 模块中找不到名为 _version_ 的属性。可能是因为你的 TensorFlow 版本太老,没有这个属性。你可以尝试升级 TensorFlow 到最新版本,或者查看你的代码中是否有拼写错误或其他语法错误。
阅读全文