要查看 TensorFlow 的版本,可以在 Python 中导入 TensorFlow 并打印其版本号。以下是在 Python 中查看 TensorFlow 版本的示例代码:
```python
import tensorflow as tf
print("TensorFlow 版本:", tf.__version__)
```
将以上代码复制粘贴到 Python 环境中运行,就可以查看当前安装的 TensorFlow 的版本号。