From fe18b4fa2da0579bfd6225879e46f960c3887001 Mon Sep 17 00:00:00 2001 From: Jason Lian Date: Wed, 31 Jul 2019 10:46:57 -0700 Subject: [PATCH 1/2] more --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index bd543cdd03..7526d83477 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,26 @@ conda install -c conda-forge sox 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 From d0643bacb0d921c9607b84887d94a4254eae65b5 Mon Sep 17 00:00:00 2001 From: Jason Lian Date: Wed, 31 Jul 2019 10:50:00 -0700 Subject: [PATCH 2/2] more --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7526d83477..f5207a791c 100644 --- a/README.md +++ b/README.md @@ -54,10 +54,13 @@ 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 ```