>>> print(tf.__version__) Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'tensorflow' has no attribute '__version__'
时间: 2024-01-02 21:07:38 浏览: 212
浅谈Python traceback的优雅处理
这个错误可能是因为您的 TensorFlow 版本较低,不支持 `tf.__version__` 属性。在较早的 TensorFlow 版本中,可以使用以下方式来获取 TensorFlow 版本号:
```
import tensorflow as tf
print(tf.VERSION)
```
如果您使用的是 TensorFlow 1.x 版本,可以使用以下方式获取 TensorFlow 版本号:
```
import tensorflow as tf
print(tf.__version__)
```
在 TensorFlow 2.x 中,以上两种方式都可以使用。希望这个回答能够解决您的问题。
阅读全文