File tree 3 files changed +391
-33
lines changed
3 files changed +391
-33
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,92 @@ redirect_from: /previous-versions.html
16
16
17
17
## 1.0.0 이상 버전 설치하기
18
18
19
+ ### v2.3.0
20
+
21
+ #### Conda
22
+
23
+ ##### OSX
24
+
25
+ ```
26
+ # conda
27
+ conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 -c pytorch
28
+ ```
29
+
30
+ ##### Linux and Windows
31
+
32
+ ```
33
+ # CUDA 11.8
34
+ conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 pytorch-cuda=11.8 -c pytorch -c nvidia
35
+ # CUDA 12.1
36
+ conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 pytorch-cuda=12.1 -c pytorch -c nvidia
37
+ # CPU Only
38
+ conda install pytorch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 cpuonly -c pytorch
39
+ ```
40
+
41
+ #### Wheel
42
+
43
+ ##### OSX
44
+
45
+ ```
46
+ pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0
47
+ ```
48
+
49
+ ##### Linux and Windows
50
+
51
+ ```
52
+ # ROCM 6.0 (Linux only)
53
+ pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/rocm6.0
54
+ # CUDA 11.8
55
+ pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu118
56
+ # CUDA 12.1
57
+ pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cu121
58
+ # CPU only
59
+ pip install torch==2.3.0 torchvision==0.18.0 torchaudio==2.3.0 --index-url https://download.pytorch.org/whl/cpu
60
+ ```
61
+
62
+ ### v2.2.2
63
+
64
+ #### Conda
65
+
66
+ ##### OSX
67
+
68
+ ```
69
+ # conda
70
+ conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 -c pytorch
71
+ ```
72
+
73
+ ##### Linux and Windows
74
+
75
+ ```
76
+ # CUDA 11.8
77
+ conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 pytorch-cuda=11.8 -c pytorch -c nvidia
78
+ # CUDA 12.1
79
+ conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 pytorch-cuda=12.1 -c pytorch -c nvidia
80
+ # CPU Only
81
+ conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 cpuonly -c pytorch
82
+ ```
83
+
84
+ #### Wheel
85
+
86
+ ##### OSX
87
+
88
+ ```
89
+ pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2
90
+ ```
91
+
92
+ ##### Linux and Windows
93
+
94
+ ```
95
+ # ROCM 5.7 (Linux only)
96
+ pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/rocm5.7
97
+ # CUDA 11.8
98
+ pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cu118
99
+ # CUDA 12.1
100
+ pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cu121
101
+ # CPU only
102
+ pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 --index-url https://download.pytorch.org/whl/cpu
103
+ ```
104
+
19
105
### v2.2.1
20
106
21
107
#### Conda
You can’t perform that action at this time.
0 commit comments