Skip to content

Commit ff94982

Browse files
committed
[release 2.7] Update Previous Versions page
1 parent 6a71f45 commit ff94982

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

_get_started/previous-versions.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,82 @@ your convenience.
1717

1818
## Commands for Versions >= 1.0.0
1919

20+
### v2.6.0
21+
22+
#### Wheel
23+
24+
##### OSX
25+
26+
```
27+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0
28+
```
29+
30+
##### Linux and Windows
31+
32+
```
33+
# ROCM 6.1 (Linux only)
34+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/rocm6.1
35+
# ROCM 6.2.4 (Linux only)
36+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/rocm6.2.4
37+
# CUDA 11.8
38+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu118
39+
# CUDA 12.4
40+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu124
41+
# CUDA 12.6
42+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cu126
43+
# CPU only
44+
pip install torch==2.6.0 torchvision==0.21.0 torchaudio==2.6.0 --index-url https://download.pytorch.org/whl/cpu
45+
```
46+
47+
### v2.5.0
48+
49+
#### Conda
50+
51+
##### OSX
52+
53+
```
54+
# conda
55+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 -c pytorch
56+
```
57+
58+
##### Linux and Windows
59+
60+
```
61+
# CUDA 11.8
62+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=11.8 -c pytorch -c nvidia
63+
# CUDA 12.1
64+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.1 -c pytorch -c nvidia
65+
# CUDA 12.4
66+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.4 -c pytorch -c nvidia
67+
# CPU Only
68+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 cpuonly -c pytorch
69+
```
70+
71+
#### Wheel
72+
73+
##### OSX
74+
75+
```
76+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0
77+
```
78+
79+
##### Linux and Windows
80+
81+
```
82+
# ROCM 6.1 (Linux only)
83+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.1
84+
# ROCM 6.2 (Linux only)
85+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.2
86+
# CUDA 11.8
87+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu118
88+
# CUDA 12.1
89+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu121
90+
# CUDA 12.4
91+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu124
92+
# CPU only
93+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cpu
94+
```
95+
2096
### v2.5.1
2197

2298
#### Conda

0 commit comments

Comments
 (0)