Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ $ conda install -c pytorch/label/nightly faiss-cpu
$ conda install -c pytorch/label/nightly faiss-gpu
```

A combination of versions that works with Pytorch (as of 2022-11-23):
A combination of versions that installs GPU Faiss with CUDA 11.4 and Pytorch (as of 2023-05-08):
```
conda create -n faiss_1.7.3 python=3.8
conda activate faiss_1.7.3
conda install pytorch==1.11.0 cudatoolkit=11.3 -c pytorch
conda install numpy
conda install -c pytorch faiss-gpu=1.7.3 cudatoolkit=11.3
conda create --name faiss_1.7.4 python=3.10
conda activate faiss_1.7.4
conda install faiss-gpu=1.7.4 -c pytorch -c nvidia
conda install faiss-gpu pytorch pytorch-cuda -c pytorch -c nvidia
conda install -c conda-forge notebook
conda install -y matplotlib
```
Expand Down