@@ -17,6 +17,170 @@ your convenience.
17
17
18
18
## Commands for Versions >= 1.0.0
19
19
20
+ ### v1.10.1
21
+
22
+ #### Conda
23
+
24
+ ##### OSX
25
+
26
+ ```
27
+ # conda
28
+ conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 -c pytorch
29
+ ```
30
+
31
+ ##### Linux and Windows
32
+
33
+ ```
34
+ # CUDA 10.2
35
+ conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cudatoolkit=10.2 -c pytorch
36
+
37
+ # CUDA 11.3
38
+ conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cudatoolkit=11.3 -c pytorch -c conda-forge
39
+
40
+ # CPU Only
41
+ conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cpuonly -c pytorch
42
+ ```
43
+
44
+ #### Wheel
45
+
46
+ ##### OSX
47
+
48
+ ```
49
+ pip install torch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1
50
+ ```
51
+
52
+ ##### Linux and Windows
53
+
54
+ ```
55
+ # ROCM 4.2 (Linux only)
56
+ pip install torch==1.10.1+rocm4.2 torchvision==0.11.2+rocm4.2 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
57
+
58
+ # ROCM 4.1 (Linux only)
59
+ pip install torch==1.10.1+rocm4.1 torchvision==0.11.2+rocm4.1 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
60
+
61
+ # ROCM 4.0.1 (Linux only)
62
+ pip install torch==1.10.1+rocm4.0.1 torchvision==0.10.2+rocm4.0.1 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
63
+
64
+ # CUDA 11.1
65
+ pip install torch==1.10.1+cu111 torchvision==0.11.2+cu111 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
66
+
67
+ # CUDA 10.2
68
+ pip install torch==1.10.1+cu102 torchvision==0.11.2+cu102 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
69
+
70
+ # CPU only
71
+ pip install torch==1.10.1+cpu torchvision==0.11.2+cpu torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html
72
+ ```
73
+
74
+
75
+ ### v1.10.0
76
+
77
+ #### Conda
78
+
79
+ ##### OSX
80
+
81
+ ```
82
+ # conda
83
+ conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 -c pytorch
84
+ ```
85
+
86
+ ##### Linux and Windows
87
+
88
+ ```
89
+ # CUDA 10.2
90
+ conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=10.2 -c pytorch
91
+
92
+ # CUDA 11.3
93
+ conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=11.3 -c pytorch -c conda-forge
94
+
95
+ # CPU Only
96
+ conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cpuonly -c pytorch
97
+ ```
98
+
99
+ #### Wheel
100
+
101
+ ##### OSX
102
+
103
+ ```
104
+ pip install torch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0
105
+ ```
106
+
107
+ ##### Linux and Windows
108
+
109
+ ```
110
+ # ROCM 4.2 (Linux only)
111
+ pip install torch==1.10.0+rocm4.2 torchvision==0.11.0+rocm4.2 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
112
+
113
+ # ROCM 4.1 (Linux only)
114
+ pip install torch==1.10.0+rocm4.1 torchvision==0.11.0+rocm4.1 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
115
+
116
+ # ROCM 4.0.1 (Linux only)
117
+ pip install torch==1.10.0+rocm4.0.1 torchvision==0.10.1+rocm4.0.1 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
118
+
119
+ # CUDA 11.1
120
+ pip install torch==1.10.0+cu111 torchvision==0.11.0+cu111 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
121
+
122
+ # CUDA 10.2
123
+ pip install torch==1.10.0+cu102 torchvision==0.11.0+cu102 torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
124
+
125
+ # CPU only
126
+ pip install torch==1.10.0+cpu torchvision==0.11.0+cpu torchaudio==0.10.0 -f https://download.pytorch.org/whl/torch_stable.html
127
+ ```
128
+
129
+
130
+ ### v1.9.1
131
+
132
+ #### Conda
133
+
134
+ ##### OSX
135
+
136
+ ```
137
+ # conda
138
+ conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1 -c pytorch
139
+ ```
140
+
141
+ ##### Linux and Windows
142
+
143
+ ```
144
+ # CUDA 10.2
145
+ conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1 cudatoolkit=10.2 -c pytorch
146
+
147
+ # CUDA 11.3
148
+ conda install pytorch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1 cudatoolkit=11.3 -c pytorch -c conda-forge
149
+
150
+ # CPU Only
151
+ conda install pytorch==1.9.0 torchvision==0.10.1 torchaudio==0.9.1 cpuonly -c pytorch
152
+ ```
153
+
154
+ #### Wheel
155
+
156
+ ##### OSX
157
+
158
+ ```
159
+ pip install torch==1.9.1 torchvision==0.10.1 torchaudio==0.9.1
160
+ ```
161
+
162
+ ##### Linux and Windows
163
+
164
+ ```
165
+ # ROCM 4.2 (Linux only)
166
+ pip install torch==1.9.0+rocm4.2 torchvision==0.10.1+rocm4.2 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
167
+
168
+ # ROCM 4.1 (Linux only)
169
+ pip install torch==1.9.0+rocm4.1 torchvision==0.10.1+rocm4.1 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
170
+
171
+ # ROCM 4.0.1 (Linux only)
172
+ pip install torch==1.9.1+rocm4.0.1 torchvision==0.10.1+rocm4.0.1 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
173
+
174
+ # CUDA 11.1
175
+ pip install torch==1.9.1+cu111 torchvision==0.10.1+cu111 torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
176
+
177
+ # CUDA 10.2
178
+ pip install torch==1.9.1+cu102 torchvision==0.10.1+cu102 torchaudio==0.9.0 -f https://download.pytorch.org/whl/torch_stable.html
179
+
180
+ # CPU only
181
+ pip install torch==1.9.1+cpu torchvision==0.10.1+cpu torchaudio==0.9.1 -f https://download.pytorch.org/whl/torch_stable.html
182
+ ```
183
+
20
184
### v1.9.0
21
185
22
186
#### Conda
0 commit comments