faiss ERROR: Could not find a version that satisfies the requirement faiss (from versions: none)

faiss ERROR: Could not find a version that satisfies the requirement faiss (from versions: none)

当运行安装时:

pip install faiss

我收到这个错误:

ERROR: Could not find a version that satisfies the requirement faiss (from versions: none)
ERROR: No matching distribution found for faiss

当我使用 conda 时也是如此:

conda install faiss

我收到这个错误:

PackagesNotFoundError: The following packages are not available from current channels:

  - faiss

Faiss on Pypi 只是 MacOS 和 Linux 的预构建二进制文件的集合,并且仅适用于这些 python 版本:

Python :: 2.7
Python :: 3.5
Python :: 3.6
Python :: 3.7

您的设置似乎不符合这些规范

For conda,它不存在于标准频道中,但可以通过以下方式安装(仅适用于 Linux 和 MacOS):

conda install -c pytorch faiss-cpu

conda install -c pytorch faiss-gpu

您可以在 Windows 上安装 faiss。转到 conda 提示符并键入:

conda install -c conda-forge faiss-cpu

只是说明显而易见的,但对于 pip,您可以使用 gpu 或 cpu 特定构建:

pip install faiss-cpu

pip install faiss-gpu