Skip to content

PyTorch

Install PyTorch on macOS

It is recommended that you use Python 3.9 - 3.12.

shell
pip3 install torch torchvision
pip3 install torch torchvision

Verification

python
import torch
x = torch.rand(5, 3)
print(x)
import torch
x = torch.rand(5, 3)
print(x)

References