Installing pre-built binaries ============================= ``torchaudio`` has binary distributions for PyPI (``pip``) and Anaconda (``conda``). Please refer to https://pytorch.org/get-started/locally/ for the details. .. note:: Each ``torchaudio`` package is compiled against specific version of ``torch``. Please refer to the following table and install the correct pair of ``torch`` and ``torchaudio``. .. note:: Starting ``0.10``, torchaudio has CPU-only and CUDA-enabled binary distributions, each of which requires a corresponding PyTorch distribution. .. note:: This software was compiled against an unmodified copies of FFmpeg, with the specific rpath removed so as to enable the use of system libraries. The LGPL source can be downloaded from the following locations: `n4.1.8 `__ (`license `__), `n5.0.3 `__ (`license `__) and `n6.0 `__ (`license `__). Dependencies ------------ * `PyTorch `_ Please refer to the compatibility matrix bellow for supported PyTorch versions. Optional Dependencies ~~~~~~~~~~~~~~~~~~~~~ * `FFmpeg `__ Required to use :py:mod:`torchaudio.io` module. and ``backend="ffmpeg"`` in I/O functions. (:py:func:`torchaudio.info`, :py:func:`torchaudio.load`, :py:func:`torchaudio.save`). TorchAudio official binary distributions are compatible with FFmpeg 4 to 6. TorchAudio searches FFmpeg 6, 5 then 4. You can use the environment variable ``TORCHAUDIO_USE_FFMPEG_VERSION`` to specify the version you would like to use. For example, ``TORCHAUDIO_USE_FFMPEG_VERSION=5``, will only search for FFmpeg 5. If dynamic linking is causing an issue, you can set the environment variable ``TORCHAUDIO_USE_FFMPEG=0``, and TorchAudio won't use FFmpeg. * `SoX `__ Required to use ``backend="sox"`` in I/O functions. (:py:func:`torchaudio.info`, :py:func:`torchaudio.load`, :py:func:`torchaudio.save`). TorchAudio is tested on libsox 14.4.2. Other versions are not supported. If dynamic linking is causing an issue, you can set the environment variable ``TORCHAUDIO_USE_SOX=0``, and TorchAudio won't use SoX. * `sentencepiece `__ Required for performing automatic speech recognition with :ref:`Emformer RNN-T`. * `deep-phonemizer `__ Required for performing text-to-speech with :ref:`Tacotron2`. * `kaldi_io `__ Required to use :py:mod:`torchaudio.kaldi_io` module. Compatibility Matrix -------------------- The official binary distributions of TorchAudio contain extension modules which are written in C++ and linked against specific versions of PyTorch. TorchAudio and PyTorch from different releases cannot be used together. Please refer to the following table for the matching versions. .. list-table:: :header-rows: 1 * - ``PyTorch`` - ``TorchAudio`` - ``Python`` * - ``2.0.1`` - ``2.0.2`` - ``>=3.8``, ``<=3.11`` * - ``2.0.0`` - ``2.0.1`` - ``>=3.8``, ``<=3.11`` * - ``1.13.1`` - ``0.13.1`` - ``>=3.7``, ``<=3.10`` * - ``1.13.0`` - ``0.13.0`` - ``>=3.7``, ``<=3.10`` * - ``1.12.1`` - ``0.12.1`` - ``>=3.7``, ``<=3.10`` * - ``1.12.0`` - ``0.12.0`` - ``>=3.7``, ``<=3.10`` * - ``1.11.0`` - ``0.11.0`` - ``>=3.7``, ``<=3.9`` * - ``1.10.0`` - ``0.10.0`` - ``>=3.6``, ``<=3.9`` * - ``1.9.1`` - ``0.9.1`` - ``>=3.6``, ``<=3.9`` * - ``1.8.1`` - ``0.8.1`` - ``>=3.6``, ``<=3.9`` * - ``1.7.1`` - ``0.7.2`` - ``>=3.6``, ``<=3.9`` * - ``1.7.0`` - ``0.7.0`` - ``>=3.6``, ``<=3.8`` * - ``1.6.0`` - ``0.6.0`` - ``>=3.6``, ``<=3.8`` * - ``1.5.0`` - ``0.5.0`` - ``>=3.5``, ``<=3.8`` * - ``1.4.0`` - ``0.4.0`` - ``==2.7``, ``>=3.5``, ``<=3.8``