Skip to content

Commit 20a15a7

Browse files
committed
assets: Add torchaudio to quick start module
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
1 parent 256aa18 commit 20a15a7

File tree

1 file changed

+57
-57
lines changed

1 file changed

+57
-57
lines changed

assets/quick-start-module.js

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -176,87 +176,87 @@ $("[data-toggle='cloud-dropdown']").on("click", function(e) {
176176
function commandMessage(key) {
177177
var object = {
178178
"stable,conda,linux,cuda9.2,python":
179-
"conda install pytorch torchvision cudatoolkit=9.2 -c pytorch",
179+
"conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch",
180180

181181
"stable,conda,linux,cuda10.1,python":
182-
"conda install pytorch torchvision cudatoolkit=10.1 -c pytorch",
182+
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch",
183183

184184
"stable,conda,linux,cuda10.2,python":
185-
"conda install pytorch torchvision cudatoolkit=10.2 -c pytorch",
185+
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch",
186186

187187
"stable,conda,linux,cuda11.0,python":
188-
"conda install pytorch torchvision cudatoolkit=11.0 -c pytorch",
188+
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch",
189189

190190
"stable,conda,linux,cudanone,python":
191-
"conda install pytorch torchvision cpuonly -c pytorch",
191+
"conda install pytorch torchvision torchaudio cpuonly -c pytorch",
192192

193193
"stable,conda,macos,cuda9.2,python":
194-
"conda install pytorch torchvision -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
194+
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
195195

196196
"stable,conda,macos,cuda10.1,python":
197-
"conda install pytorch torchvision -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
197+
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
198198

199199
"stable,conda,macos,cuda10.2,python":
200-
"conda install pytorch torchvision -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
200+
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
201201

202202
"stable,conda,macos,cuda11.0,python":
203-
"conda install pytorch torchvision -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
203+
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
204204

205205
"stable,conda,macos,cudanone,python":
206-
"conda install pytorch torchvision -c pytorch",
206+
"conda install pytorch torchvision torchaudio -c pytorch",
207207

208208
"stable,conda,windows,cuda10.1,python":
209-
"conda install pytorch torchvision cudatoolkit=10.1 -c pytorch",
209+
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch",
210210

211211
"stable,conda,windows,cuda10.2,python":
212-
"conda install pytorch torchvision cudatoolkit=10.2 -c pytorch",
212+
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch",
213213

214214
"stable,conda,windows,cuda11.0,python":
215-
"conda install pytorch torchvision cudatoolkit=11.0 -c pytorch",
215+
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch",
216216

217217
"stable,conda,windows,cudanone,python":
218-
"conda install pytorch torchvision cpuonly -c pytorch",
218+
"conda install pytorch torchvision torchaudio cpuonly -c pytorch",
219219

220220
"stable,pip,macos,cuda9.2,python":
221-
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
221+
"pip install torch torchvision torchaudio<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
222222

223223
"stable,pip,macos,cuda10.1,python":
224-
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
224+
"pip install torch torchvision torchaudio<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
225225

226226
"stable,pip,macos,cuda10.2,python":
227-
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
227+
"pip install torch torchvision torchaudio<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
228228

229229
"stable,pip,macos,cuda11.0,python":
230-
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
230+
"pip install torch torchvision torchaudio<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
231231

232-
"stable,pip,macos,cudanone,python": "pip install torch torchvision",
232+
"stable,pip,macos,cudanone,python": "pip install torch torchvision torchaudio",
233233

234234
"stable,pip,linux,cudanone,python":
235-
"pip install torch==1.7.0+cpu torchvision==0.8.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
235+
"pip install torch==1.7.0+cpu torchvision==0.8.0+cpu torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
236236

237237
"stable,pip,linux,cuda9.2,python":
238-
"pip install torch==1.7.0+cu92 torchvision==0.8.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
238+
"pip install torch==1.7.0+cu92 torchvision==0.8.0+cu92 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
239239

240240
"stable,pip,linux,cuda10.1,python":
241-
"pip install torch==1.7.0+cu101 torchvision==0.8.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html",
241+
"pip install torch==1.7.0+cu101 torchvision==0.8.0+cu101 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
242242

243243
"stable,pip,linux,cuda10.2,python":
244244
"pip install torch torchvision",
245245

246246
"stable,pip,linux,cuda11.0,python":
247-
"pip install torch==1.7.0+cu110 torchvision==0.8.0+cu110 -f https://download.pytorch.org/whl/torch_stable.html",
247+
"pip install torch==1.7.0+cu110 torchvision==0.8.0+cu110 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
248248

249249
"stable,pip,windows,cudanone,python":
250-
"pip install torch==1.7.0+cpu torchvision==0.8.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
250+
"pip install torch==1.7.0+cpu torchvision==0.8.0+cpu torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
251251

252252
"stable,pip,windows,cuda10.1,python":
253-
"pip install torch==1.7.0+cu101 torchvision==0.8.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html",
253+
"pip install torch==1.7.0+cu101 torchvision==0.8.0+cu101 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
254254

255255
"stable,pip,windows,cuda10.2,python":
256-
"pip install torch===1.7.0 torchvision===0.8.0 -f https://download.pytorch.org/whl/torch_stable.html",
256+
"pip install torch===1.7.0 torchvision===0.8.0 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
257257

258258
"stable,pip,windows,cuda11.0,python":
259-
"pip install torch===1.7.0+cu110 torchvision===0.8.0+cu110 -f https://download.pytorch.org/whl/torch_stable.html",
259+
"pip install torch===1.7.0+cu110 torchvision===0.8.0+cu110 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html",
260260

261261
"stable,libtorch,linux,cudanone,cplusplus":
262262
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.7.0%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.7.0%2Bcpu.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.7.0%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.7.0%2Bcpu.zip</a>",
@@ -301,94 +301,94 @@ function commandMessage(key) {
301301
"Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-1.7.0.zip'>https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-1.7.0.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-debug-1.7.0.zip'>https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-debug-1.7.0.zip</a>",
302302

303303
"preview,conda,linux,cuda9.2,python":
304-
"conda install pytorch torchvision cudatoolkit=9.2 -c pytorch-nightly",
304+
"conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly",
305305

306306
"preview,conda,linux,cuda10.1,python":
307-
"conda install pytorch torchvision cudatoolkit=10.1 -c pytorch-nightly",
307+
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly",
308308

309309
"preview,conda,linux,cuda10.2,python":
310-
"conda install pytorch torchvision cudatoolkit=10.2 -c pytorch-nightly",
310+
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly",
311311

312312
"preview,conda,linux,cuda11.0,python":
313-
"conda install pytorch torchvision cudatoolkit=11.0 -c pytorch-nightly",
313+
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly",
314314

315315
"preview,conda,linux,cudanone,python":
316-
"conda install pytorch torchvision cpuonly -c pytorch-nightly",
316+
"conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
317317

318318
"preview,conda,macos,cuda9.2,python":
319-
"conda install pytorch torchvision -c pytorch-nightly",
319+
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
320320

321321
"preview,conda,macos,cuda10.1,python":
322-
"conda install pytorch torchvision -c pytorch-nightly",
322+
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
323323

324324
"preview,conda,macos,cuda10.2,python":
325-
"conda install pytorch torchvision -c pytorch-nightly",
325+
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
326326

327327
"preview,conda,macos,cuda11.0,python":
328-
"conda install pytorch torchvision -c pytorch-nightly",
328+
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
329329

330330
"preview,conda,macos,cudanone,python":
331-
"conda install pytorch torchvision -c pytorch-nightly",
331+
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
332332

333333
"preview,conda,windows,cuda9.2,python":
334-
"conda install pytorch torchvision cudatoolkit=9.2 -c pytorch-nightly -c defaults -c numba/label/dev",
334+
"conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly -c defaults -c numba/label/dev",
335335

336336
"preview,conda,windows,cuda10.1,python":
337-
"conda install pytorch torchvision cudatoolkit=10.1 -c pytorch-nightly",
337+
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly",
338338

339339
"preview,conda,windows,cuda10.2,python":
340-
"conda install pytorch torchvision cudatoolkit=10.2 -c pytorch-nightly",
340+
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly",
341341

342342
"preview,conda,windows,cuda11.0,python":
343-
"conda install pytorch torchvision cudatoolkit=11.0 -c pytorch-nightly",
343+
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly",
344344

345345
"preview,conda,windows,cudanone,python":
346-
"conda install pytorch torchvision cpuonly -c pytorch-nightly",
346+
"conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
347347

348348
"preview,pip,macos,cuda9.2,python":
349-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
349+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
350350

351351
"preview,pip,macos,cuda10.1,python":
352-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
352+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
353353

354354
"preview,pip,macos,cuda10.2,python":
355-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
355+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
356356

357357
"preview,pip,macos,cuda11.0,python":
358-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
358+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html<br /># On MacOS, we provide CPU-only packages, CUDA functionality is not provided",
359359

360360
"preview,pip,macos,cudanone,python":
361-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
361+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
362362

363363
"preview,pip,linux,cudanone,python":
364-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
364+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
365365

366366
"preview,pip,linux,cuda9.2,python":
367-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu92/torch_nightly.html",
367+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu92/torch_nightly.html",
368368

369369
"preview,pip,linux,cuda10.1,python":
370-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu101/torch_nightly.html",
370+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu101/torch_nightly.html",
371371

372372
"preview,pip,linux,cuda10.2,python":
373-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html",
373+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html",
374374

375375
"preview,pip,linux,cuda11.0,python":
376-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html",
376+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html",
377377

378378
"preview,pip,windows,cudanone,python":
379-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
379+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html",
380380

381381
"preview,pip,windows,cuda9.2,python":
382-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu92/torch_nightly.html",
382+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu92/torch_nightly.html",
383383

384384
"preview,pip,windows,cuda10.1,python":
385-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu101/torch_nightly.html",
385+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu101/torch_nightly.html",
386386

387387
"preview,pip,windows,cuda10.2,python":
388-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html",
388+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html",
389389

390390
"preview,pip,windows,cuda11.0,python":
391-
"pip install numpy<br />pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html",
391+
"pip install numpy<br />pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu110/torch_nightly.html",
392392

393393
"preview,libtorch,linux,cudanone,cplusplus":
394394
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cpu/libtorch-shared-with-deps-latest.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip'>https://download.pytorch.org/libtorch/nightly/cpu/libtorch-cxx11-abi-shared-with-deps-latest.zip</a>",

0 commit comments

Comments
 (0)