Skip to content

Commit fda5e5f

Browse files
committed
quick-start: Add a note about Python 3.9 installation
Not all Python 3.9 dependenices are available within the default anaconda channel, this adds a note that states that users will also need to use conda-forge for dependencies. Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
1 parent 5bb87e1 commit fda5e5f

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

assets/quick-start-module.js

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -175,46 +175,46 @@ $("[data-toggle='cloud-dropdown']").on("click", function(e) {
175175
function commandMessage(key) {
176176
var object = {
177177
"stable,conda,linux,cuda9.2,python":
178-
"conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch",
178+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch",
179179

180180
"stable,conda,linux,cuda10.1,python":
181-
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch",
181+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch",
182182

183183
"stable,conda,linux,cuda10.2,python":
184-
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch",
184+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch",
185185

186186
"stable,conda,linux,cuda11.0,python":
187-
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch",
187+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch",
188188

189189
"stable,conda,linux,cudanone,python":
190-
"conda install pytorch torchvision torchaudio cpuonly -c pytorch",
190+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cpuonly -c pytorch",
191191

192192
"stable,conda,macos,cuda9.2,python":
193-
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
193+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
194194

195195
"stable,conda,macos,cuda10.1,python":
196-
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
196+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
197197

198198
"stable,conda,macos,cuda10.2,python":
199-
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
199+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
200200

201201
"stable,conda,macos,cuda11.0,python":
202-
"conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
202+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
203203

204204
"stable,conda,macos,cudanone,python":
205-
"conda install pytorch torchvision torchaudio -c pytorch",
205+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch",
206206

207207
"stable,conda,windows,cuda10.1,python":
208-
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch",
208+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch",
209209

210210
"stable,conda,windows,cuda10.2,python":
211-
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch",
211+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch",
212212

213213
"stable,conda,windows,cuda11.0,python":
214-
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch",
214+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch",
215215

216216
"stable,conda,windows,cudanone,python":
217-
"conda install pytorch torchvision torchaudio cpuonly -c pytorch",
217+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cpuonly -c pytorch",
218218

219219
"stable,pip,macos,cuda9.2,python":
220220
"pip install torch torchvision torchaudio<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",
@@ -300,49 +300,49 @@ function commandMessage(key) {
300300
"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%2Bcu110.zip'>https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-1.7.0%2Bcu110.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%2Bcu110.zip'>https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-debug-1.7.0%2Bcu110.zip</a>",
301301

302302
"preview,conda,linux,cuda9.2,python":
303-
"conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly",
303+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly",
304304

305305
"preview,conda,linux,cuda10.1,python":
306-
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly",
306+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly",
307307

308308
"preview,conda,linux,cuda10.2,python":
309-
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly",
309+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly",
310310

311311
"preview,conda,linux,cuda11.0,python":
312-
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly",
312+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly",
313313

314314
"preview,conda,linux,cudanone,python":
315-
"conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
315+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
316316

317317
"preview,conda,macos,cuda9.2,python":
318-
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
318+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch-nightly",
319319

320320
"preview,conda,macos,cuda10.1,python":
321-
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
321+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch-nightly",
322322

323323
"preview,conda,macos,cuda10.2,python":
324-
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
324+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch-nightly",
325325

326326
"preview,conda,macos,cuda11.0,python":
327-
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
327+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch-nightly",
328328

329329
"preview,conda,macos,cudanone,python":
330-
"conda install pytorch torchvision torchaudio -c pytorch-nightly",
330+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio -c pytorch-nightly",
331331

332332
"preview,conda,windows,cuda9.2,python":
333-
"conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly -c defaults -c numba/label/dev",
333+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly -c defaults -c numba/label/dev",
334334

335335
"preview,conda,windows,cuda10.1,python":
336-
"conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly",
336+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly",
337337

338338
"preview,conda,windows,cuda10.2,python":
339-
"conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly",
339+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly",
340340

341341
"preview,conda,windows,cuda11.0,python":
342-
"conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly",
342+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly",
343343

344344
"preview,conda,windows,cudanone,python":
345-
"conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
345+
"<b>NOTE:</b> Python 3.9 users will need to add '-c=conda-forge' for installation<br />conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly",
346346

347347
"preview,pip,macos,cuda9.2,python":
348348
"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",

0 commit comments

Comments
 (0)