From fda5e5fd7f99de6fdd887dfef3b41d9389384b87 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 10 Dec 2020 07:49:51 -0800 Subject: [PATCH 1/2] 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 --- assets/quick-start-module.js | 58 ++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/assets/quick-start-module.js b/assets/quick-start-module.js index 410aec3c60eb..05067622fafd 100644 --- a/assets/quick-start-module.js +++ b/assets/quick-start-module.js @@ -175,46 +175,46 @@ $("[data-toggle='cloud-dropdown']").on("click", function(e) { function commandMessage(key) { var object = { "stable,conda,linux,cuda9.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch", "stable,conda,linux,cuda10.1,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch", "stable,conda,linux,cuda10.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", "stable,conda,linux,cuda11.0,python": - "conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch", "stable,conda,linux,cudanone,python": - "conda install pytorch torchvision torchaudio cpuonly -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cpuonly -c pytorch", "stable,conda,macos,cuda9.2,python": - "conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "stable,conda,macos,cuda10.1,python": - "conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "stable,conda,macos,cuda10.2,python": - "conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "stable,conda,macos,cuda11.0,python": - "conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", "stable,conda,macos,cudanone,python": - "conda install pytorch torchvision torchaudio -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch", "stable,conda,windows,cuda10.1,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch", "stable,conda,windows,cuda10.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch", "stable,conda,windows,cuda11.0,python": - "conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch", "stable,conda,windows,cudanone,python": - "conda install pytorch torchvision torchaudio cpuonly -c pytorch", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cpuonly -c pytorch", "stable,pip,macos,cuda9.2,python": "pip install torch torchvision torchaudio
# MacOS Binaries dont support CUDA, install from source if CUDA is needed", @@ -300,49 +300,49 @@ function commandMessage(key) { "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-1.7.0%2Bcu110.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-debug-1.7.0%2Bcu110.zip", "preview,conda,linux,cuda9.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly", "preview,conda,linux,cuda10.1,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly", "preview,conda,linux,cuda10.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", "preview,conda,linux,cuda11.0,python": - "conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly", "preview,conda,linux,cudanone,python": - "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", "preview,conda,macos,cuda9.2,python": - "conda install pytorch torchvision torchaudio -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,cuda10.1,python": - "conda install pytorch torchvision torchaudio -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,cuda10.2,python": - "conda install pytorch torchvision torchaudio -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,cuda11.0,python": - "conda install pytorch torchvision torchaudio -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,macos,cudanone,python": - "conda install pytorch torchvision torchaudio -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio -c pytorch-nightly", "preview,conda,windows,cuda9.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly -c defaults -c numba/label/dev", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly -c defaults -c numba/label/dev", "preview,conda,windows,cuda10.1,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.1 -c pytorch-nightly", "preview,conda,windows,cuda10.2,python": - "conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch-nightly", "preview,conda,windows,cuda11.0,python": - "conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=11.0 -c pytorch-nightly", "preview,conda,windows,cudanone,python": - "conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", + "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cpuonly -c pytorch-nightly", "preview,pip,macos,cuda9.2,python": "pip install numpy
pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
# On MacOS, we provide CPU-only packages, CUDA functionality is not provided", From 63b7add8b7fce1522c3bd7af025636e38e770747 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 10 Dec 2020 07:57:37 -0800 Subject: [PATCH 2/2] quick-start: Bump versions for 1.7.1 release Signed-off-by: Eli Uriegas --- _includes/quick_start_local.html | 2 +- assets/quick-start-module.js | 44 ++++++++++++++++---------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/_includes/quick_start_local.html b/_includes/quick_start_local.html index 0504774020a9..ee0bcc94eebd 100644 --- a/_includes/quick_start_local.html +++ b/_includes/quick_start_local.html @@ -33,7 +33,7 @@
PyTorch Build
-
Stable (1.7.0)
+
Stable (1.7.1)
Preview (Nightly)
diff --git a/assets/quick-start-module.js b/assets/quick-start-module.js index 05067622fafd..c703b00f749b 100644 --- a/assets/quick-start-module.js +++ b/assets/quick-start-module.js @@ -231,73 +231,73 @@ function commandMessage(key) { "stable,pip,macos,cudanone,python": "pip install torch torchvision torchaudio", "stable,pip,linux,cudanone,python": - "pip install torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch==1.7.1+cpu torchvision==0.8.2+cpu torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,linux,cuda9.2,python": - "pip install torch==1.7.0+cu92 torchvision==0.8.1+cu92 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch==1.7.1+cu92 torchvision==0.8.2+cu92 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,linux,cuda10.1,python": - "pip install torch==1.7.0+cu101 torchvision==0.8.1+cu101 torchaudio==0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch==1.7.1+cu101 torchvision==0.8.2+cu101 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,linux,cuda10.2,python": "pip install torch torchvision", "stable,pip,linux,cuda11.0,python": - "pip install torch==1.7.0+cu110 torchvision==0.8.1+cu110 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,windows,cudanone,python": - "pip install torch==1.7.0+cpu torchvision==0.8.1+cpu torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch==1.7.1+cpu torchvision==0.8.2+cpu torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,windows,cuda10.1,python": - "pip install torch==1.7.0+cu101 torchvision==0.8.1+cu101 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch==1.7.1+cu101 torchvision==0.8.2+cu101 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,windows,cuda10.2,python": - "pip install torch===1.7.0 torchvision===0.8.1 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch===1.7.1 torchvision===0.8.2 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,pip,windows,cuda11.0,python": - "pip install torch===1.7.0+cu110 torchvision===0.8.1+cu110 torchaudio===0.7.0 -f https://download.pytorch.org/whl/torch_stable.html", + "pip install torch===1.7.1+cu110 torchvision===0.8.2+cu110 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html", "stable,libtorch,linux,cudanone,cplusplus": - "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.7.0%2Bcpu.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.7.0%2Bcpu.zip", + "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.7.1%2Bcpu.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.7.1%2Bcpu.zip", "stable,libtorch,linux,cuda9.2,cplusplus": - "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu92/libtorch-shared-with-deps-1.7.0%2Bcu92.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu92/libtorch-cxx11-abi-shared-with-deps-1.7.0%2Bcu92.zip", + "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu92/libtorch-shared-with-deps-1.7.1%2Bcu92.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu92/libtorch-cxx11-abi-shared-with-deps-1.7.1%2Bcu92.zip", "stable,libtorch,linux,cuda10.1,cplusplus": - "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu101/libtorch-shared-with-deps-1.7.0%2Bcu101.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu101/libtorch-cxx11-abi-shared-with-deps-1.7.0%2Bcu101.zip", + "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu101/libtorch-shared-with-deps-1.7.1%2Bcu101.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu101/libtorch-cxx11-abi-shared-with-deps-1.7.1%2Bcu101.zip", "stable,libtorch,linux,cuda10.2,cplusplus": - "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.7.0.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.7.0.zip", + "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-shared-with-deps-1.7.1.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu102/libtorch-cxx11-abi-shared-with-deps-1.7.1.zip", "stable,libtorch,linux,cuda11.0,cplusplus": - "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu110/libtorch-shared-with-deps-1.7.0%2Bcu110.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu110/libtorch-cxx11-abi-shared-with-deps-1.7.0%2Bcu110.zip", + "Download here (Pre-cxx11 ABI):
https://download.pytorch.org/libtorch/cu110/libtorch-shared-with-deps-1.7.1%2Bcu110.zip

Download here (cxx11 ABI):
https://download.pytorch.org/libtorch/cu110/libtorch-cxx11-abi-shared-with-deps-1.7.1%2Bcu110.zip", "stable,libtorch,macos,cudanone,cplusplus": - "Download here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.0.zip ", + "Download here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.1.zip ", "stable,libtorch,macos,cuda9.2,cplusplus": - "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.0.zip ", + "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.1.zip ", "stable,libtorch,macos,cuda10.1,cplusplus": - "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.0.zip ", + "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.1.zip ", "stable,libtorch,macos,cuda10.2,cplusplus": - "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.0.zip ", + "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.1.zip ", "stable,libtorch,macos,cuda11.0,cplusplus": - "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.0.zip ", + "MacOS binaries do not support CUDA. Download CPU libtorch here:
https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.7.1.zip ", "stable,libtorch,windows,cudanone,cplusplus": - "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.7.0%2Bcpu.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.7.0%2Bcpu.zip", + "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.7.1%2Bcpu.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.7.1%2Bcpu.zip", "stable,libtorch,windows,cuda10.1,cplusplus": - "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-1.7.0%2Bcu101.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-debug-1.7.0%2Bcu101.zip", + "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-1.7.1%2Bcu101.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-debug-1.7.1%2Bcu101.zip", "stable,libtorch,windows,cuda10.2,cplusplus": - "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.7.0.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.7.0.zip", + "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-1.7.1.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu102/libtorch-win-shared-with-deps-debug-1.7.1.zip", "stable,libtorch,windows,cuda11.0,cplusplus": - "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-1.7.0%2Bcu110.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-debug-1.7.0%2Bcu110.zip", + "Windows binaries do not support Java. Support is only available for Linux and MacOS. Download here for C++ (Release version):
https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-1.7.1%2Bcu110.zip

Download here for C++ (Debug version):
https://download.pytorch.org/libtorch/cu110/libtorch-win-shared-with-deps-debug-1.7.1%2Bcu110.zip", "preview,conda,linux,cuda9.2,python": "NOTE: Python 3.9 users will need to add '-c=conda-forge' for installation
conda install pytorch torchvision torchaudio cudatoolkit=9.2 -c pytorch-nightly",