PyTorch 2.10 Final RC Available

The final 2.10.0 RC for PyTorch core and Domain Libraries is available for download from the pytorch-test channel.

Remaining Key Dates

Milestones M1 through M4 are complete.

  • M4.1: Tutorial drafts submission deadline (1/13/26)
  • M5: External-Facing Content Finalized (1/16/26)
  • M6: Release Day (1/21/26)

Download instructions for testing Final RC

PIP CPU:

Windows/Linux x86 and aarch64/MacOS:

pip3 install torch==2.10.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cpu

PIP CUDA 12.6, 12.8, 13.0
Windows/Linux x86 and aarch64:

pip3 install torch==2.10.0  torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cu126

pip3 install torch==2.10.0  torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cu128

pip3 install torch==2.10.0  torchvision torchaudio --index-url https://download.pytorch.org/whl/test/cu130

PIP ROCM 7.0, 7.1

pip3 install torch==2.10.0  torchvision torchaudio --index-url https://download.pytorch.org/whl/test/rocm7.0

pip3 install torch==2.10.0  torchvision torchaudio --index-url https://download.pytorch.org/whl/test/rocm7.1

PIP XPU

Linux/Windows:

pip3 install torch==2.10.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/test/xpu

Libtorch

CPU Linux:

CPU Windows:

CPU MacOS

CUDA 12.6, 12.8, 13.0 Linux

Windows CUDA 12.6, 12.8, 13.0

(Release version):

(Debug version):

Cheers,
Team PyTorch

How does one use uv to install a particular version of PyTorch? In pip we can shoot a single command with index-url, but with uv and pyproject.toml, the index gets applied to all packages. And sometimes PyTorch index includes some old versions of some transitive dependencies

Would it be possible to publish complete pyproject.toml files specifying PyTorch and its dependency packages via direct URLs?