在Ubuntu系統(tǒng)上配置PyTorch的步驟如下:
安裝Python:確保系統(tǒng)已經(jīng)安裝了Python,推薦安裝Python3。
安裝pip:pip是Python的包管理工具,可以使用以下命令安裝pip:
sudo apt install python3-pip
pip install numpy
pip install torch
import torch
print(torch.__version__)
如果輸出PyTorch的版本號,則表示PyTorch安裝成功。
這樣就成功配置了PyTorch在Ubuntu系統(tǒng)上。