fix the missing version for duckduckgo-search#3
fix the missing version for duckduckgo-search#3shawnsang wants to merge 2 commits intowade1010:mainfrom
Conversation
Other python version may not work well.
|
@shawnsang I also encountered the issue with the I tried to install graphrag-ui via: pip install graphrag-ui But it failed due to a dependency conflict (duckduckgo-search==6.2.11 not available on PyPI). pip install -r requirements.txt The installation succeeded, but when I tried to run: graphrag-ui-server I got the error: graphrag-ui-server: command not found Questions
Looking forward to your suggestions. Thank you! |
|
@InTheFuture7 , based on the Readme, there no command like 'graphrag-ui-server' , you should launch it like : Clean version This version only supports indexing, Prompt Tuning, and file management, without query functionality. Comprehensive version This version adds visualizations, configuration management, and GraphRAG chat functionality on top of the clean version. |
|
@shawnsang Thank you, the issue regarding the incorrect version of
cd graphrag-ui
pip install -r requirements.txtAfter resolving the above issue, I encountered another problem. In short, there are conflicts between some packages from Below is a detailed description of the problem. Problem descriptionWhen I run the command: python api.py --host 0.0.0.0 --port 8012 --reload I encounter the following prompt: I proceeded to run: pip install graphrag However, during the installation, there were several conflicts between AttemptAttempt 1: Ignore conflicts and run anywayWhen I ignored the warnings and tried to run the script again, I received the following error: Attempt 2: Manual adjustment using PoetryBased on the output message, I manually updated poetry lock
poetry install Despite this, the earlier ImportError persisted: |
|
@InTheFuture7 , sorry late to reply to you. I do not have more time to check it, so attach my environment package list for your reference. So, I think you can use poetry add all package one by one in an new conda environment. That may fix these issues. |
|
@shawnsang Thank you so much for taking the time to share this! |
#1