From 1e71ac2a2920de68a20184af5545a3335fd687ed Mon Sep 17 00:00:00 2001 From: Alanna Burke Date: Fri, 2 May 2025 15:31:28 -0400 Subject: [PATCH 1/2] Removing conda installation references. --- docs/source/build.linux.rst | 2 +- docs/source/build.rst | 2 +- docs/source/build.windows.rst | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/build.linux.rst b/docs/source/build.linux.rst index 5aa10dd7a4..f455acbfcd 100644 --- a/docs/source/build.linux.rst +++ b/docs/source/build.linux.rst @@ -12,7 +12,7 @@ Please folllow the instruction at https://docs.conda.io/en/latest/miniconda.html Please select the version of PyTorch you want to install from https://pytorch.org/get-started/locally/ Here, we install nightly build. - +.. needs update .. code-block:: conda install pytorch -c pytorch-nightly diff --git a/docs/source/build.rst b/docs/source/build.rst index 32f283ba0b..99d6fcc913 100644 --- a/docs/source/build.rst +++ b/docs/source/build.rst @@ -13,7 +13,7 @@ TorchAudio integrates PyTorch for numerical computation and third party librarie - `CUDA toolkit `_ and `cuDNN `_ (if building CUDA extension) Most of the tools are available in `Conda `_, so we recommend using conda. - +.. needs update - note that PyTorch is no longer available in Conda? .. toctree:: :maxdepth: 1 diff --git a/docs/source/build.windows.rst b/docs/source/build.windows.rst index ef040bb322..9e80f35f94 100644 --- a/docs/source/build.windows.rst +++ b/docs/source/build.windows.rst @@ -86,7 +86,7 @@ The following combination is known to work. 3. Install PyTorch ------------------ - +.. needs update Please refer to https://pytorch.org/get-started/locally/ for the up-to-date way to install PyTorch. The following command installs the nightly build version of PyTorch. @@ -159,7 +159,7 @@ To build single version FFmpeg extension, FFmpeg binaries must be provided by us conda install -c conda-forge ffmpeg FFMPEG_ROOT=${CONDA_PREFIX}/Library python setup.py develop - + [Optional] Building FFmpeg from source -------------------------------------- From 3ab4f2f1465176023d0d33d9e46663a1e8d4cc0f Mon Sep 17 00:00:00 2001 From: Alanna Burke Date: Mon, 12 May 2025 18:20:04 -0400 Subject: [PATCH 2/2] Removing conda references. --- docs/source/build.linux.rst | 4 ++-- docs/source/build.rst | 2 -- docs/source/build.windows.rst | 13 ------------- 3 files changed, 2 insertions(+), 17 deletions(-) diff --git a/docs/source/build.linux.rst b/docs/source/build.linux.rst index f455acbfcd..864078257d 100644 --- a/docs/source/build.linux.rst +++ b/docs/source/build.linux.rst @@ -12,10 +12,10 @@ Please folllow the instruction at https://docs.conda.io/en/latest/miniconda.html Please select the version of PyTorch you want to install from https://pytorch.org/get-started/locally/ Here, we install nightly build. -.. needs update + .. code-block:: - conda install pytorch -c pytorch-nightly + pip install --pre --index-url https://download.pytorch.org/whl/nightly/cpu 3. Install build tools ---------------------- diff --git a/docs/source/build.rst b/docs/source/build.rst index 99d6fcc913..f1f80ece28 100644 --- a/docs/source/build.rst +++ b/docs/source/build.rst @@ -12,8 +12,6 @@ TorchAudio integrates PyTorch for numerical computation and third party librarie - `MSVC `_ 2019 or newer (Windows) - `CUDA toolkit `_ and `cuDNN `_ (if building CUDA extension) -Most of the tools are available in `Conda `_, so we recommend using conda. -.. needs update - note that PyTorch is no longer available in Conda? .. toctree:: :maxdepth: 1 diff --git a/docs/source/build.windows.rst b/docs/source/build.windows.rst index 9e80f35f94..732f246865 100644 --- a/docs/source/build.windows.rst +++ b/docs/source/build.windows.rst @@ -86,21 +86,8 @@ The following combination is known to work. 3. Install PyTorch ------------------ -.. needs update Please refer to https://pytorch.org/get-started/locally/ for the up-to-date way to install PyTorch. -The following command installs the nightly build version of PyTorch. - -.. code-block:: - - # CPU-only - conda install pytorch cpuonly -c pytorch-nightly - - # With CUDA support - conda install pytorch pytorch-cuda=11.7 -c pytorch-nightly -c nvidia - -When installing CUDA-enabled version, it also install CUDA toolkit. - 4. [Optional] cuDNN -------------------