Skip to content

Commit c5c3ead

Browse files
committed
1 parent 6bb5fb1 commit c5c3ead

File tree

3 files changed

+1125
-59
lines changed

3 files changed

+1125
-59
lines changed

_get_started/previous-versions.md

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

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

19+
### v2.5.0
20+
21+
#### Conda
22+
23+
##### OSX
24+
25+
```
26+
# conda
27+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 -c pytorch
28+
```
29+
30+
##### Linux and Windows
31+
32+
```
33+
# CUDA 11.8
34+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=11.8 -c pytorch -c nvidia
35+
# CUDA 12.1
36+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.1 -c pytorch -c nvidia
37+
# CUDA 12.4
38+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 pytorch-cuda=12.4 -c pytorch -c nvidia
39+
# CPU Only
40+
conda install pytorch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 cpuonly -c pytorch
41+
```
42+
43+
#### Wheel
44+
45+
##### OSX
46+
47+
```
48+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0
49+
```
50+
51+
##### Linux and Windows
52+
53+
```
54+
# ROCM 6.1 (Linux only)
55+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.1
56+
# ROCM 6.2 (Linux only)
57+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/rocm6.2
58+
# CUDA 11.8
59+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu118
60+
# CUDA 12.1
61+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu121
62+
# CUDA 12.4
63+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cu124
64+
# CPU only
65+
pip install torch==2.5.0 torchvision==0.20.0 torchaudio==2.5.0 --index-url https://download.pytorch.org/whl/cpu
66+
```
67+
68+
### v2.4.1
69+
#### Conda
70+
##### OSX
71+
```
72+
# conda
73+
conda install pytorch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 -c pytorch
74+
```
75+
##### Linux and Windows
76+
```
77+
# CUDA 11.8
78+
conda install pytorch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 pytorch-cuda=11.8 -c pytorch -c nvidia
79+
# CUDA 12.1
80+
conda install pytorch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 pytorch-cuda=12.1 -c pytorch -c nvidia
81+
# CUDA 12.4
82+
conda install pytorch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 pytorch-cuda=12.4 -c pytorch -c nvidia
83+
# CPU Only
84+
conda install pytorch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 cpuonly -c pytorch
85+
```
86+
#### Wheel
87+
##### OSX
88+
```
89+
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1
90+
```
91+
##### Linux and Windows
92+
```
93+
# ROCM 6.1 (Linux only)
94+
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 --index-url https://download.pytorch.org/whl/rocm6.1
95+
# CUDA 11.8
96+
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 --index-url https://download.pytorch.org/whl/cu118
97+
# CUDA 12.1
98+
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 --index-url https://download.pytorch.org/whl/cu121
99+
# CUDA 12.4
100+
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 --index-url https://download.pytorch.org/whl/cu124
101+
# CPU only
102+
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 --index-url https://download.pytorch.org/whl/cpu
103+
```
104+
105+
### v2.4.0
106+
107+
#### Conda
108+
109+
##### OSX
110+
111+
```
112+
# conda
113+
conda install pytorch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 -c pytorch
114+
```
115+
116+
##### Linux and Windows
117+
118+
```
119+
# CUDA 11.8
120+
conda install pytorch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 pytorch-cuda=11.8 -c pytorch -c nvidia
121+
# CUDA 12.1
122+
conda install pytorch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 pytorch-cuda=12.1 -c pytorch -c nvidia
123+
# CUDA 12.4
124+
conda install pytorch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 pytorch-cuda=12.4 -c pytorch -c nvidia
125+
# CPU Only
126+
conda install pytorch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 cpuonly -c pytorch
127+
```
128+
129+
#### Wheel
130+
131+
##### OSX
132+
133+
```
134+
pip install torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0
135+
```
136+
137+
##### Linux and Windows
138+
139+
```
140+
# ROCM 6.1 (Linux only)
141+
pip install torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 --index-url https://download.pytorch.org/whl/rocm6.1
142+
# CUDA 11.8
143+
pip install torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 --index-url https://download.pytorch.org/whl/cu118
144+
# CUDA 12.1
145+
pip install torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 --index-url https://download.pytorch.org/whl/cu121
146+
# CUDA 12.4
147+
pip install torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 --index-url https://download.pytorch.org/whl/cu124
148+
# CPU only
149+
pip install torch==2.4.0 torchvision==0.19.0 torchaudio==2.4.0 --index-url https://download.pytorch.org/whl/cpu
150+
```
151+
19152
### v2.3.1
20153

21154
#### Conda

0 commit comments

Comments
 (0)