要查看TensorFlow的版本,可以通過以下步驟:
1. 打開Python交互式環(huán)境,可以使用命令行工具或者Jupyter Notebook。
2. 導入TensorFlow庫:`import tensorflow as tf`
3. 使用`tf.__version__`命令來查看TensorFlow的版本號。
例如,在Python交互式環(huán)境中輸入以下代碼:
```
import tensorflow as tf
print(tf.__version__)
```
運行后會輸出當前安裝的TensorFlow版本號。