The core binaries for the 2.13.0 RC1 are now available on the PyTorch test channel for download and validation. Please test them and submit any required cherry-picks to the 2.13 release tracker: [v.2.13.0] Release Tracker · Issue #186934 · pytorch/pytorch · GitHub
Versions in this RC: torch==2.13.0, torchvision==0.28.0.
Release milestones
- M1: Release Announcement (20/5/26)
- M2: All PRs landed in PyTorch repo / Feature Submission Closed (5/6/26)
- M3: Release branch cut, create RC1 for PyTorch and Torchvision (week of 8/6/26)
- M4: Release branch finalized, Announce final launch date, Feature classifications published (week of 22/6/26) - Final RC is produced.
- M4.1: Tutorial drafts submission deadline (30/6/26)
- M5: External-Facing Content Finalized (1/7/26)
- M6: Release Day (8/7/26)
Download instructions
All commands install from the test channel (download.pytorch.org/whl/test/).
PIP CPU (Windows / Linux x86 & aarch64 / macOS)
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/cpu
PIP CUDA (Windows / Linux x86 & aarch64)
:: CUDA 12.6
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/cu126
:: CUDA 13.0
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/cu130
:: CUDA 13.2
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/cu132
PIP ROCm (Linux)
:: ROCm 7.1
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/rocm7.1
:: ROCm 7.2
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/rocm7.2
PIP XPU (Linux / Windows)
pip3 install torch==2.13.0 torchvision==0.28.0 --index-url https://download.pytorch.org/whl/test/xpu
Libtorch
Libtorch zips follow the standard naming on the test channel; confirm exact filenames once the RC1 binaries finish uploading. Representative links (replace cu130 with cu126/cu132 as needed):
-
Linux CPU (cxx11 ABI): https://download.pytorch.org/libtorch/test/cpu/libtorch-cxx11-abi-shared-with-deps-2.13.0%2Bcpu.zip
-
Windows CPU (Release): https://download.pytorch.org/libtorch/test/cpu/libtorch-win-shared-with-deps-2.13.0%2Bcpu.zip
-
macOS arm64: https://download.pytorch.org/libtorch/test/cpu/libtorch-macos-arm64-2.13.0.zip
-
Linux CUDA 13.0 (cxx11 ABI): https://download.pytorch.org/libtorch/test/cu130/libtorch-cxx11-abi-shared-with-deps-2.13.0%2Bcu130.zip
-
Windows CUDA 13.0 (Release): https://download.pytorch.org/libtorch/test/cu130/libtorch-win-shared-with-deps-2.13.0%2Bcu130.zip
Note: Windows libtorch debug zips (libtorch-win-shared-with-deps-debug-*.zip) are deprecated as of 2.12.1 and are no longer produced for 2.13.0. If you need a Windows debug build, build libtorch from source. Please see following post for more details: Important Note: Stop publishing prebuilt Windows libtorch debug binaries
Cheers,
Team PyTorch