From a8142cd83f124cabd6cdbe11e18fb9f2d20d90bc Mon Sep 17 00:00:00 2001 From: Travis Hathaway Date: Mon, 20 Mar 2023 13:18:44 +0100 Subject: [PATCH] Fix previous version conda install command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An issues was recently reported in the conda project: - https://github.com/conda/conda/issues/12500 regarding what appears to be a typo with this project's documentation. This pull request is an attempt to resolve this. I believe you all meant to specify an extra "nvidia" channel and not to install it to an environment named "vidia", correct? Thanks for considering this pull request ✌️ --- _get_started/previous-versions.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_get_started/previous-versions.md b/_get_started/previous-versions.md index 46db23ca6619..dcafd8ca2a92 100644 --- a/_get_started/previous-versions.md +++ b/_get_started/previous-versions.md @@ -32,9 +32,9 @@ conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 -c pytorch ``` # CUDA 11.6 -conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.6 -c pytorch -nvidia +conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.6 -c pytorch -c nvidia # CUDA 11.7 -conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.7 -c pytorch -nvidia +conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 pytorch-cuda=11.7 -c pytorch -c nvidia # CPU Only conda install pytorch==1.13.1 torchvision==0.14.1 torchaudio==0.13.1 cpuonly -c pytorch ``` @@ -76,9 +76,9 @@ conda install pytorch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0 -c pytorch ``` # CUDA 11.6 -conda install pytorch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0 pytorch-cuda=11.6 -c pytorch -nvidia +conda install pytorch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0 pytorch-cuda=11.6 -c pytorch -c nvidia # CUDA 11.7 -conda install pytorch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0 pytorch-cuda=11.7 -c pytorch -nvidia +conda install pytorch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0 pytorch-cuda=11.7 -c pytorch -c nvidia # CPU Only conda install pytorch==1.13.0 torchvision==0.14.0 torchaudio==0.13.0 cpuonly -c pytorch ```