How to execute the main.py?
I want to run the "main.py". It provides me an error:
ModuleNotFoundError: No module named 'pymilvus'
So I do pip install pymilvus.
However, it follows with
ModuleNotFoundError: No module named 'langchain_core'
and so we are going from one pitfall into the next one.
Can someone please provide a requirements.txt so that the library would work? Maybe this is even a good candidate for a PR (but i am not experienced enough)
In order to run the examples, many libs are missing in the requirements.txt:
-
pymilvius -
langchain_core -
termcolor -
firecrawl(orcrawl4ai)
If you are using Qdrant, you also need pip install qdrant-client
requirements file: https://github.com/zilliztech/deep-searcher/blob/master/requirements.txt
requirements file: https://github.com/zilliztech/deep-searcher/blob/master/requirements.txt
i did pip install -e ..
but it still missed important libs like I wrote.