faiss-wheels
Community-maintained faiss wheel builder
File Explorer
Download Latest Version (.zip)- bug_report.md
- feature_request.md
- build.yml
- dependabot.yml
- default_config.cmake
- CMakeLists.txt
- install_Linux.sh
- install_macOS.sh
- install_Windows.ps1
- rename_project.sh
- faiss
- OpenBLAS
- .gitignore
- .gitmodules
- CMakeLists.txt
- LICENSE
- NOTICE
- pyproject.toml
- README.md
# Installation Guide
git clone https://github.com/faiss-wheels/faiss-wheels
Downloads the entire project code from GitHub to your computer.
cd faiss-wheels
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install faiss-cpu
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. CMake
Mediummkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
4. Python
Easy> pip install faiss-cpu
Installs the Python libraries listed in requirements.txt (or similar).
pip install faiss-cpu
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
