From b740a7d46a07ca9415f072001839fb66a582a3fa Mon Sep 17 00:00:00 2001 From: David Chan Date: Mon, 12 Jul 2021 12:23:59 -0700 Subject: [PATCH] Fix bug with pip whl links --- INSTALL.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index aad090a..70efd1b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -17,15 +17,15 @@ When installing FAISS from source, it is necessary to build and install both the If you do not want to use 10.2, you can download using pip from our hosted sources: ``` # CUDA 11.0 -pip3 install tsnecuda==3.0.0+cu110 -f https://tsnecuda.isx.ai/whl/tsnecuda_stable.html +pip3 install tsnecuda==3.0.0+cu110 -f https://tsnecuda.isx.ai/tsnecuda_stable.html # CUDA 11.1 -pip3 install tsnecuda==3.0.0+cu111 -f https://tsnecuda.isx.ai/whl/tsnecuda_stable.html +pip3 install tsnecuda==3.0.0+cu111 -f https://tsnecuda.isx.ai/tsnecuda_stable.html # CUDA 11.2 -pip3 install tsnecuda==3.0.0+cu112 -f https://tsnecuda.isx.ai/whl/tsnecuda_stable.html +pip3 install tsnecuda==3.0.0+cu112 -f https://tsnecuda.isx.ai/tsnecuda_stable.html # CUDA 11.3 -pip3 install tsnecuda==3.0.0+cu113 -f https://tsnecuda.isx.ai/whl/tsnecuda_stable.html +pip3 install tsnecuda==3.0.0+cu113 -f https://tsnecuda.isx.ai/tsnecuda_stable.html # CUDA 10.1 -pip3 install tsnecuda==3.0.0+cu101 -f https://tsnecuda.isx.ai/whl/tsnecuda_stable.html +pip3 install tsnecuda==3.0.0+cu101 -f https://tsnecuda.isx.ai/tsnecuda_stable.html ```