fix path for visualization tool dependencies file
This commit is contained in:
2
setup.py
2
setup.py
@@ -65,7 +65,7 @@ def read_api_requirements():
|
|||||||
def read_extra_requirements():
|
def read_extra_requirements():
|
||||||
api_deps = []
|
api_deps = []
|
||||||
try:
|
try:
|
||||||
with open("./lightrag/extra/VisualizationTool/requirements.txt") as f:
|
with open("./lightrag/tools/lightrag_visualizer/requirements.txt") as f:
|
||||||
api_deps = [line.strip() for line in f if line.strip()]
|
api_deps = [line.strip() for line in f if line.strip()]
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
print("Warning: API requirements.txt not found.")
|
print("Warning: API requirements.txt not found.")
|
||||||
|
Reference in New Issue
Block a user