Retrieval-based-Voice-Conversion-WebUI
Retrieval-based-Voice-Conversion-WebUI copied to clipboard
No module named 'faiss'
Hi, after installing the requirements I try to launch the web interface with python but I get the following error.
Traceback (most recent call last): File "infer-web.py", line 21, in <module> import faiss ModuleNotFoundError: No module named 'faiss'
and when I try to install it with pip it says it is not found. Any ideas? I am running Windows 10.
I also tried pip install faiss-gpu
, but got the following error.
pip install faiss
and pip install numpy
You should specify the pip corresponding to the location of the Python environment you want to call, and then enter xxx/xxx/pip install -r requirements.txt no "install faiss", but "install faiss-cpu"
Thanks, that fixed it