Skip to content

Commit a16a663

Browse files
committed
1 parent 219fa6f commit a16a663

File tree

5 files changed

+3071
-173
lines changed

5 files changed

+3071
-173
lines changed

Gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ GEM
291291
PLATFORMS
292292
arm64-darwin-21
293293
arm64-darwin-22
294+
arm64-darwin-24
294295
x86_64-darwin-20
295296
x86_64-linux
296297

_get_started/previous-versions.md

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

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

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

2197
#### Conda

0 commit comments

Comments
 (0)