2

运行安装时:

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
4

2 回答 2

6

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

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

您的设置似乎与这些规格不符

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

conda install -c pytorch faiss-cpu

或者

conda install -c pytorch faiss-gpu
于 2019-11-20T15:01:07.730 回答
0

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

conda install -c conda-forge faiss-cpu
于 2021-09-02T09:15:17.313 回答