PyTorch
Install PyTorch on macOS
It is recommended that you use Python 3.9 - 3.12.
shellpip3 install torch torchvision
pip3 install torch torchvision
Verification
pythonimport torch
x = torch.rand(5, 3)
print(x)
import torch
x = torch.rand(5, 3)
print(x)
References