From 9a71482bec02a66539071889f82b3132c5eda969 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Wed, 31 Jul 2019 12:58:37 -0400 Subject: [PATCH] Binary install instructions. Signed-off-by: Edward Z. Yang --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index c74cfe8e26..3e8d5b5495 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,29 @@ sudo apt-get install sox libsox-dev libsox-fmt-all Installation ------------ +### Binaries + +To install pip wheels of 0.2.0, select the appropriate pip wheel for +your version of Python: + +``` +# Wheels for Python 2 are NOT supported + +# Python 3.5 +pip3 install http://download.pytorch.org/whl/torchaudio-0.2-cp35-cp35m-linux_x86_64.whl + +# Python 3.6 +pip3 install http://download.pytorch.org/whl/torchaudio-0.2-cp36-cp36m-linux_x86_64.whl + +# Python 3.7 +pip3 install http://download.pytorch.org/whl/torchaudio-0.2-cp37-cp37m-linux_x86_64.whl +``` + +### From Source + +If your system configuration is not among the supported configurations +above, you can build from source. + ```bash # Linux python setup.py install