Skip to content

Commit 5ed936f

Browse files
committed
1 parent abb3919 commit 5ed936f

File tree

3 files changed

+4456
-23
lines changed

3 files changed

+4456
-23
lines changed

_get_started/previous-versions.md

Lines changed: 301 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,307 @@ redirect_from: /previous-versions.html
1616

1717
## 1.0.0 이상 버전 설치하기
1818

19+
### v2.2.1
20+
21+
#### Conda
22+
23+
##### OSX
24+
25+
```
26+
# conda
27+
conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 -c pytorch
28+
```
29+
30+
##### Linux and Windows
31+
32+
```
33+
# CUDA 11.8
34+
conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 pytorch-cuda=11.8 -c pytorch -c nvidia
35+
# CUDA 12.1
36+
conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 pytorch-cuda=12.1 -c pytorch -c nvidia
37+
# CPU Only
38+
conda install pytorch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 cpuonly -c pytorch
39+
```
40+
41+
#### Wheel
42+
43+
##### OSX
44+
45+
```
46+
pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1
47+
```
48+
49+
##### Linux and Windows
50+
51+
```
52+
# ROCM 5.7 (Linux only)
53+
pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/rocm5.7
54+
# CUDA 11.8
55+
pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cu118
56+
# CUDA 12.1
57+
pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cu121
58+
# CPU only
59+
pip install torch==2.2.1 torchvision==0.17.1 torchaudio==2.2.1 --index-url https://download.pytorch.org/whl/cpu
60+
```
61+
62+
### v2.2.0
63+
64+
#### Conda
65+
66+
##### OSX
67+
68+
```
69+
# conda
70+
conda install pytorch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 -c pytorch
71+
```
72+
73+
##### Linux and Windows
74+
75+
```
76+
# CUDA 11.8
77+
conda install pytorch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 pytorch-cuda=11.8 -c pytorch -c nvidia
78+
# CUDA 12.1
79+
conda install pytorch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 pytorch-cuda=12.1 -c pytorch -c nvidia
80+
# CPU Only
81+
conda install pytorch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 cpuonly -c pytorch
82+
```
83+
84+
#### Wheel
85+
86+
##### OSX
87+
88+
```
89+
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0
90+
```
91+
92+
##### Linux and Windows
93+
94+
```
95+
# ROCM 5.6 (Linux only)
96+
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 --index-url https://download.pytorch.org/whl/rocm5.6
97+
# CUDA 11.8
98+
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 --index-url https://download.pytorch.org/whl/cu118
99+
# CUDA 12.1
100+
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 --index-url https://download.pytorch.org/whl/cu121
101+
# CPU only
102+
pip install torch==2.2.0 torchvision==0.17.0 torchaudio==2.2.0 --index-url https://download.pytorch.org/whl/cpu
103+
```
104+
105+
### v2.1.2
106+
107+
#### Conda
108+
109+
##### OSX
110+
111+
```
112+
# conda
113+
conda install pytorch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 -c pytorch
114+
```
115+
116+
##### Linux and Windows
117+
118+
```
119+
# CUDA 11.8
120+
conda install pytorch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 pytorch-cuda=11.8 -c pytorch -c nvidia
121+
# CUDA 12.1
122+
conda install pytorch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 pytorch-cuda=12.1 -c pytorch -c nvidia
123+
# CPU Only
124+
conda install pytorch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 cpuonly -c pytorch
125+
```
126+
127+
#### Wheel
128+
129+
##### OSX
130+
131+
```
132+
pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2
133+
```
134+
135+
##### Linux and Windows
136+
137+
```
138+
# ROCM 5.6 (Linux only)
139+
pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/rocm5.6
140+
# CUDA 11.8
141+
pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cu118
142+
# CUDA 12.1
143+
pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cu121
144+
# CPU only
145+
pip install torch==2.1.2 torchvision==0.16.2 torchaudio==2.1.2 --index-url https://download.pytorch.org/whl/cpu
146+
```
147+
148+
### v2.1.1
149+
150+
#### Conda
151+
152+
##### OSX
153+
154+
```
155+
# conda
156+
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 -c pytorch
157+
```
158+
159+
##### Linux and Windows
160+
161+
```
162+
# CUDA 11.8
163+
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia
164+
# CUDA 12.1
165+
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=12.1 -c pytorch -c nvidia
166+
# CPU Only
167+
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 cpuonly -c pytorch
168+
```
169+
170+
#### Wheel
171+
172+
##### OSX
173+
174+
```
175+
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1
176+
```
177+
178+
##### Linux and Windows
179+
180+
```
181+
# ROCM 5.6 (Linux only)
182+
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/rocm5.6
183+
# CUDA 11.8
184+
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cu118
185+
# CUDA 12.1
186+
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cu121
187+
# CPU only
188+
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cpu
189+
```
190+
191+
### v2.1.0
192+
193+
#### Conda
194+
195+
##### OSX
196+
197+
```
198+
# conda
199+
conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 -c pytorch
200+
```
201+
202+
##### Linux and Windows
203+
204+
```
205+
# CUDA 11.8
206+
conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 pytorch-cuda=11.8 -c pytorch -c nvidia
207+
# CUDA 12.1
208+
conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 pytorch-cuda=12.1 -c pytorch -c nvidia
209+
# CPU Only
210+
conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 cpuonly -c pytorch
211+
```
212+
213+
#### Wheel
214+
215+
##### OSX
216+
217+
```
218+
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0
219+
```
220+
221+
##### Linux and Windows
222+
223+
```
224+
# ROCM 5.6 (Linux only)
225+
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/rocm5.6
226+
# CUDA 11.8
227+
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu118
228+
# CUDA 12.1
229+
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cu121
230+
# CPU only
231+
pip install torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 --index-url https://download.pytorch.org/whl/cpu
232+
```
233+
234+
### v2.0.1
235+
236+
#### Conda
237+
238+
##### OSX
239+
240+
```
241+
# conda
242+
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 -c pytorch
243+
```
244+
245+
##### Linux and Windows
246+
247+
```
248+
# CUDA 11.7
249+
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.7 -c pytorch -c nvidia
250+
# CUDA 11.8
251+
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 pytorch-cuda=11.8 -c pytorch -c nvidia
252+
# CPU Only
253+
conda install pytorch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 cpuonly -c pytorch
254+
```
255+
256+
#### Wheel
257+
258+
##### OSX
259+
260+
```
261+
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2
262+
```
263+
264+
##### Linux and Windows
265+
266+
```
267+
# ROCM 5.4.2 (Linux only)
268+
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/rocm5.4.2
269+
# CUDA 11.7
270+
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2
271+
# CUDA 11.8
272+
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/cu118
273+
# CPU only
274+
pip install torch==2.0.1 torchvision==0.15.2 torchaudio==2.0.2 --index-url https://download.pytorch.org/whl/cpu
275+
```
276+
277+
### v2.0.0
278+
279+
#### Conda
280+
281+
##### OSX
282+
283+
```
284+
# conda
285+
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 -c pytorch
286+
```
287+
288+
##### Linux and Windows
289+
290+
```
291+
# CUDA 11.7
292+
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 pytorch-cuda=11.7 -c pytorch -c nvidia
293+
# CUDA 11.8
294+
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 pytorch-cuda=11.8 -c pytorch -c nvidia
295+
# CPU Only
296+
conda install pytorch==2.0.0 torchvision==0.15.0 torchaudio==2.0.0 cpuonly -c pytorch
297+
```
298+
299+
#### Wheel
300+
301+
##### OSX
302+
303+
```
304+
pip install torch==2.0.0 torchvision==0.15.1 torchaudio==2.0.1
305+
```
306+
307+
##### Linux and Windows
308+
309+
```
310+
# ROCM 5.4.2 (Linux only)
311+
pip install torch==2.0.0 torchvision==0.15.1 torchaudio==2.0.1 --index-url https://download.pytorch.org/whl/rocm5.4.2
312+
# CUDA 11.7
313+
pip install torch==2.0.0 torchvision==0.15.1 torchaudio==2.0.1
314+
# CUDA 11.8
315+
pip install torch==2.0.0 torchvision==0.15.1 torchaudio==2.0.1 --index-url https://download.pytorch.org/whl/cu118
316+
# CPU only
317+
pip install torch==2.0.0 torchvision==0.15.1 torchaudio==2.0.1 --index-url https://download.pytorch.org/whl/cpu
318+
```
319+
19320
### v1.13.1
20321

21322
#### Conda

0 commit comments

Comments
 (0)