diff --git a/_get_started/previous-versions.md b/_get_started/previous-versions.md
index 17fc0631..5407f391 100644
--- a/_get_started/previous-versions.md
+++ b/_get_started/previous-versions.md
@@ -16,6 +16,92 @@ redirect_from: /previous-versions.html
## 1.0.0 이상 버전 설치하기
+### v2.3.0
+
+#### Conda
+
+##### OSX
+
+```
+# conda
+conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 -c pytorch
+```
+
+##### Linux and Windows
+
+```
+# CUDA 11.8
+conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 pytorch-cuda=11.8 -c pytorch -c nvidia
+# CUDA 12.1
+conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 pytorch-cuda=12.1 -c pytorch -c nvidia
+# CPU Only
+conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 cpuonly -c pytorch
+```
+
+#### Wheel
+
+##### OSX
+
+```
+pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0
+```
+
+##### Linux and Windows
+
+```
+# ROCM 6.0 (Linux only)
+pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/rocm6.0
+# CUDA 11.8
+pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu118
+# CUDA 12.1
+pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu121
+# CPU only
+pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cpu
+```
+
+### v2.2.2
+
+#### Conda
+
+##### OSX
+
+```
+# conda
+conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 -c pytorch
+```
+
+##### Linux and Windows
+
+```
+# CUDA 11.8
+conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 pytorch-cuda=11.8 -c pytorch -c nvidia
+# CUDA 12.1
+conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 pytorch-cuda=12.1 -c pytorch -c nvidia
+# CPU Only
+conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 cpuonly -c pytorch
+```
+
+#### Wheel
+
+##### OSX
+
+```
+pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2
+```
+
+##### Linux and Windows
+
+```
+# ROCM 5.7 (Linux only)
+pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/rocm5.7
+# CUDA 11.8
+pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cu118
+# CUDA 12.1
+pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cu121
+# CPU only
+pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cpu
+```
+
### v2.2.1
#### Conda
diff --git a/assets/quick-start-module.js b/assets/quick-start-module.js
index da793ffa..80e02acb 100644
--- a/assets/quick-start-module.js
+++ b/assets/quick-start-module.js
@@ -15,7 +15,7 @@ let version_map = {
nightly: { accnone: ["cpu", ""], "cuda.x": ["cuda", "11.8"], "cuda.y": ["cuda", "12.1"], "rocm5.x": ["rocm", "6.0"] },
release: { accnone: ["cpu", ""], "cuda.x": ["cuda", "11.8"], "cuda.y": ["cuda", "12.1"], "rocm5.x": ["rocm", "5.7"] },
};
-let stable_version = "Stable (2.2.2)";
+let stable_version = "Stable (2.3.1)";
var default_selected_os = getAnchorSelectedOS() || getDefaultSelectedOS();
var opts = {
@@ -248,12 +248,16 @@ function commandMessage(key) {
"pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118",
"preview,pip,linux,cuda.y,python":
"pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121",
+ "preview,pip,linux,cuda.z,python":
+ "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124",
"preview,pip,linux,rocm5.x,python":
- "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.0",
+ "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.1",
"preview,conda,linux,cuda.x,python":
"conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch-nightly -c nvidia",
"preview,conda,linux,cuda.y,python":
"conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch-nightly -c nvidia",
+ "preview,conda,linux,cuda.z,python":
+ "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch-nightly -c nvidia",
"preview,conda,linux,rocm5.x,python":
"NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
"preview,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
@@ -263,12 +267,16 @@ function commandMessage(key) {
"Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu118/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu118/libtorch-cxx11-abi-shared-with-deps-latest.zip",
"preview,libtorch,linux,cuda.y,cplusplus":
"Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu121/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu121/libtorch-cxx11-abi-shared-with-deps-latest.zip",
+ "preview,libtorch,linux,cuda.z,cplusplus":
+ "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu124/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/cu124/libtorch-cxx11-abi-shared-with-deps-latest.zip",
"preview,libtorch,linux,rocm5.x,cplusplus":
- "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/rocm6.0/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/rocm6.0/libtorch-cxx11-abi-shared-with-deps-latest.zip",
+ "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/rocm6.1/libtorch-shared-with-deps-latest.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/nightly/rocm6.1/libtorch-cxx11-abi-shared-with-deps-latest.zip",
"preview,pip,macos,cuda.x,python":
"# CUDA is not available on MacOS, please use default package
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
"preview,pip,macos,cuda.y,python":
"# CUDA is not available on MacOS, please use default package
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
+ "preview,pip,macos,cuda.z,python":
+ "# CUDA is not available on MacOS, please use default package
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
"preview,pip,macos,rocm5.x,python":
"# ROCm is not available on MacOS, please use default package
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
"preview,pip,macos,accnone,python":
@@ -277,29 +285,37 @@ function commandMessage(key) {
"# CUDA is not available on MacOS, please use default package
conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
"preview,conda,macos,cuda.y,python":
"# CUDA is not available on MacOS, please use default package
conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
+ "preview,conda,macos,cuda.z,python":
+ "# CUDA is not available on MacOS, please use default package
conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
"preview,conda,macos,rocm5.x,python":
"# ROCm is not available on MacOS, please use default package
conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
"preview,conda,macos,accnone,python":
"conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
"preview,libtorch,macos,accnone,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
"preview,libtorch,macos,cuda.x,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
"preview,libtorch,macos,cuda.y,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
+ "preview,libtorch,macos,cuda.z,cplusplus":
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
"preview,libtorch,macos,rocm5.x,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip",
"preview,pip,windows,accnone,python":
"pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
"preview,pip,windows,cuda.x,python":
"pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118",
"preview,pip,windows,cuda.y,python":
"pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121",
+ "preview,pip,windows,cuda.z,python":
+ "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124",
"preview,pip,windows,rocm5.x,python": "NOTE: ROCm is not available on Windows",
"preview,conda,windows,cuda.x,python":
"conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch-nightly -c nvidia",
"preview,conda,windows,cuda.y,python":
"conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch-nightly -c nvidia",
+ "preview,conda,windows,cuda.z,python":
+ "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch-nightly -c nvidia",
"preview,conda,windows,rocm5.x,python": "NOTE: ROCm is not available on Windows",
"preview,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
"preview,libtorch,windows,accnone,cplusplus":
@@ -308,14 +324,17 @@ function commandMessage(key) {
"Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu118/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu118/libtorch-win-shared-with-deps-debug-latest.zip",
"preview,libtorch,windows,cuda.y,cplusplus":
"Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu121/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu121/libtorch-win-shared-with-deps-debug-latest.zip",
+ "preview,libtorch,windows,cuda.z,cplusplus":
+ "Download here (Release version):
https://download.pytorch.org/libtorch/nightly/cu124/libtorch-win-shared-with-deps-latest.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/nightly/cu124/libtorch-win-shared-with-deps-debug-latest.zip",
"preview,libtorch,windows,rocm5.x,cplusplus": "NOTE: ROCm is not available on Windows",
"stable,pip,linux,accnone,python":
"pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu",
"stable,pip,linux,cuda.x,python":
"pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118",
- "stable,pip,linux,cuda.y,python": "pip3 install torch torchvision torchaudio",
+ "stable,pip,linux,cuda.y,python":
+ "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121",
"stable,pip,linux,rocm5.x,python":
- "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.7",
+ "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.0",
"stable,conda,linux,cuda.x,python":
"conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia",
"stable,conda,linux,cuda.y,python":
@@ -324,20 +343,21 @@ function commandMessage(key) {
"NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
"stable,conda,linux,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch",
"stable,libtorch,linux,accnone,cplusplus":
- "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.2.2%2Bcpu.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Bcpu.zip",
+ "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.3.1%2Bcpu.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcpu.zip",
"stable,libtorch,linux,cuda.x,cplusplus":
- "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.2.2%2Bcu118.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Bcu118.zip",
+ "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.3.1%2Bcu118.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcu118.zip",
"stable,libtorch,linux,cuda.y,cplusplus":
- "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.2.2%2Bcu121.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Bcu121.zip",
+ "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.3.1%2Bcu121.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Bcu121.zip",
"stable,libtorch,linux,rocm5.x,cplusplus":
- "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/rocm5.7/libtorch-shared-with-deps-2.2.2%2Brocm5.7.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/rocm5.7/libtorch-cxx11-abi-shared-with-deps-2.2.2%2Brocm5.7.zip",
+ "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/rocm6.0/libtorch-shared-with-deps-2.3.1%2Brocm6.0.zip
Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/rocm6.0/libtorch-cxx11-abi-shared-with-deps-2.3.1%2Brocm6.0.zip",
"stable,pip,macos,cuda.x,python":
- "# CUDA is not available on MacOS, please use default package
pip3 install torch torchvision torchaudio",
+ "# CUDA is not available on MacOS, please use default package
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu",
"stable,pip,macos,cuda.y,python":
- "# CUDA is not available on MacOS, please use default package
pip3 install torch torchvision torchaudio",
+ "# CUDA is not available on MacOS, please use default package
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu",
"stable,pip,macos,rocm5.x,python":
- "# ROCm is not available on MacOS, please use default package
pip3 install torch torchvision torchaudio",
- "stable,pip,macos,accnone,python": "pip3 install torch torchvision torchaudio",
+ "# ROCm is not available on MacOS, please use default package
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu",
+ "stable,pip,macos,accnone,python":
+ "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu",
"stable,conda,macos,cuda.x,python":
"# CUDA is not available on MacOS, please use default package
conda install pytorch::pytorch torchvision torchaudio -c pytorch",
"stable,conda,macos,cuda.y,python":
@@ -346,14 +366,15 @@ function commandMessage(key) {
"# ROCm is not available on MacOS, please use default package
conda install pytorch::pytorch torchvision torchaudio -c pytorch",
"stable,conda,macos,accnone,python": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
"stable,libtorch,macos,accnone,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip",
"stable,libtorch,macos,cuda.x,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip",
"stable,libtorch,macos,cuda.y,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip",
"stable,libtorch,macos,rocm5.x,cplusplus":
- "Download x86 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-x86_64-2.2.2.zip
Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.2.2.zip",
- "stable,pip,windows,accnone,python": "pip3 install torch torchvision torchaudio",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):
https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.1.zip",
+ "stable,pip,windows,accnone,python":
+ "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu",
"stable,pip,windows,cuda.x,python":
"pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118",
"stable,pip,windows,cuda.y,python":
@@ -366,11 +387,11 @@ function commandMessage(key) {
"stable,conda,windows,rocm5.x,python": "NOTE: ROCm is not available on Windows",
"stable,conda,windows,accnone,python": "conda install pytorch torchvision torchaudio cpuonly -c pytorch",
"stable,libtorch,windows,accnone,cplusplus":
- "Download here (Release version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.2.2%2Bcpu.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.2.2%2Bcpu.zip",
+ "Download here (Release version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.3.1%2Bcpu.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.3.1%2Bcpu.zip",
"stable,libtorch,windows,cuda.x,cplusplus":
- "Download here (Release version):
https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.2.2%2Bcu118.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.2.2%2Bcu118.zip",
+ "Download here (Release version):
https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.3.1%2Bcu118.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.3.1%2Bcu118.zip",
"stable,libtorch,windows,cuda.y,cplusplus":
- "Download here (Release version):
https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.2.2%2Bcu121.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.2.2%2Bcu121.zip",
+ "Download here (Release version):
https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.3.1%2Bcu121.zip
Download here (Debug version):
https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.3.1%2Bcu121.zip",
"stable,libtorch,windows,rocm5.x,cplusplus": "NOTE: ROCm is not available on Windows",
};
diff --git a/published_versions.json b/published_versions.json
index e7080045..3fe29329 100644
--- a/published_versions.json
+++ b/published_versions.json
@@ -1,5 +1,5 @@
{
- "latest_stable": "2.2.2",
+ "latest_stable": "2.3.0",
"latest_lts": "lts-1.8.2",
"versions": {
"preview": {
@@ -17,9 +17,13 @@
"note": null,
"command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121"
},
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124"
+ },
"rocm5.x": {
"note": null,
- "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.0"
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.1"
}
},
"conda": {
@@ -31,6 +35,10 @@
"note": null,
"command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch-nightly -c nvidia"
},
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch-nightly -c nvidia"
+ },
"rocm5.x": {
"note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
"command": null
@@ -62,11 +70,18 @@
"Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu121/libtorch-cxx11-abi-shared-with-deps-latest.zip"
}
},
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ }
+ },
"rocm5.x": {
"note": null,
"versions": {
- "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/rocm6.0/libtorch-shared-with-deps-latest.zip",
- "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/rocm6.0/libtorch-cxx11-abi-shared-with-deps-latest.zip"
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/rocm6.1/libtorch-shared-with-deps-latest.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/nightly/rocm6.1/libtorch-cxx11-abi-shared-with-deps-latest.zip"
}
}
}
@@ -83,6 +98,11 @@
"command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
"default": true
},
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
+ "default": true
+ },
"rocm5.x": {
"note": "# ROCm is not available on MacOS, please use default package",
"command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cpu",
@@ -104,6 +124,11 @@
"command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
"default": true
},
+ "cuda.z": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
+ "default": true
+ },
"rocm5.x": {
"note": "# ROCm is not available on MacOS, please use default package",
"command": "conda install pytorch-nightly::pytorch torchvision torchaudio -c pytorch-nightly",
@@ -118,7 +143,6 @@
"accnone": {
"note": null,
"versions": {
- "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip",
"Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
}
},
@@ -126,7 +150,6 @@
"note": null,
"default": true,
"versions": {
- "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip",
"Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
}
},
@@ -134,7 +157,13 @@
"note": null,
"default": true,
"versions": {
- "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip",
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
+ }
+ },
+ "cuda.z": {
+ "note": null,
+ "default": true,
+ "versions": {
"Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
}
},
@@ -142,7 +171,6 @@
"note": null,
"default": true,
"versions": {
- "Download x86 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-x86_64-latest.zip",
"Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/nightly/cpu/libtorch-macos-arm64-latest.zip"
}
}
@@ -162,6 +190,10 @@
"note": null,
"command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu121"
},
+ "cuda.z": {
+ "note": null,
+ "command": "pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu124"
+ },
"rocm5.x": {
"note": "NOTE: ROCm is not available on Windows",
"command": null
@@ -176,6 +208,10 @@
"note": null,
"command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch-nightly -c nvidia"
},
+ "cuda.z": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.4 -c pytorch-nightly -c nvidia"
+ },
"rocm5.x": {
"note": "NOTE: ROCm is not available on Windows",
"command": null
@@ -207,6 +243,13 @@
"Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cu121/libtorch-win-shared-with-deps-debug-latest.zip"
}
},
+ "cuda.z": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-win-shared-with-deps-latest.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/nightly/cu124/libtorch-win-shared-with-deps-debug-latest.zip"
+ }
+ },
"rocm5.x": {
"note": "NOTE: ROCm is not available on Windows",
"versions": null
@@ -4129,6 +4172,214 @@
}
}
}
+ },
+ "2.3.0": {
+ "linux": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "rocm5.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.0"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "NOTE: Conda packages are not currently available for ROCm, please use pip instead
",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.3.0%2Bcpu.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-shared-with-deps-2.3.0%2Bcu118.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu118/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-shared-with-deps-2.3.0%2Bcu121.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/cu121/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "versions": {
+ "Download here (Pre-cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.0/libtorch-shared-with-deps-2.3.0%2Brocm6.0.zip",
+ "Download here (cxx11 ABI):": "https://download.pytorch.org/libtorch/rocm6.0/libtorch-cxx11-abi-shared-with-deps-2.3.0%2Brocm6.0.zip"
+ }
+ }
+ }
+ },
+ "macos": {
+ "pip": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "pip3 install torch torchvision torchaudio",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "cuda.y": {
+ "note": "# CUDA is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "rocm5.x": {
+ "note": "# ROCm is not available on MacOS, please use default package",
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch",
+ "default": true
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch::pytorch torchvision torchaudio -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": null,
+ "default": true,
+ "versions": {
+ "Download arm64 libtorch here (ROCm and CUDA are not supported):": "https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.3.0.zip"
+ }
+ }
+ }
+ },
+ "windows": {
+ "pip": {
+ "accnone": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio"
+ },
+ "cuda.x": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121"
+ },
+ "rocm5.x": {
+ "note": "NOTE: ROCm is not available on Windows",
+ "command": null
+ }
+ },
+ "conda": {
+ "cuda.x": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia"
+ },
+ "cuda.y": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio pytorch-cuda=12.1 -c pytorch -c nvidia"
+ },
+ "rocm5.x": {
+ "note": "NOTE: ROCm is not available on Windows",
+ "command": null
+ },
+ "accnone": {
+ "note": null,
+ "command": "conda install pytorch torchvision torchaudio cpuonly -c pytorch"
+ }
+ },
+ "libtorch": {
+ "accnone": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.3.0%2Bcpu.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.3.0%2Bcpu.zip"
+ }
+ },
+ "cuda.x": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-2.3.0%2Bcu118.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu118/libtorch-win-shared-with-deps-debug-2.3.0%2Bcu118.zip"
+ }
+ },
+ "cuda.y": {
+ "note": null,
+ "versions": {
+ "Download here (Release version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-2.3.0%2Bcu121.zip",
+ "Download here (Debug version):": "https://download.pytorch.org/libtorch/cu121/libtorch-win-shared-with-deps-debug-2.3.0%2Bcu121.zip"
+ }
+ },
+ "rocm5.x": {
+ "note": "NOTE: ROCm is not available on Windows",
+ "versions": null
+ }
+ }
+ }
}
}
}
\ No newline at end of file