要在Ubuntu上安裝和使用TensorFlow,您可以按照以下步驟操作:
python --version
如果您的系統中沒有安裝Python,請使用以下命令安裝Python:
sudo apt update
sudo apt install python3
sudo apt install python3-pip
pip install tensorflow
如果您要安裝GPU版本,請運行以下命令:
pip install tensorflow-gpu
python
然后輸入以下命令導入TensorFlow并輸出版本信息:
import tensorflow as tf
print(tf.__version__)
現在您已經成功在Ubuntu上安裝了TensorFlow,并可以開始使用它來構建和訓練深度學習模型。祝您使用愉快!