From 23f153f690d52cb8296c2eac8fd61dfe84888ced Mon Sep 17 00:00:00 2001 From: ArnoChen Date: Wed, 5 Feb 2025 02:35:51 +0800 Subject: [PATCH] fix path for visualization tool dependencies file --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e080a1dd..d01ac67a 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ def read_api_requirements(): def read_extra_requirements(): api_deps = [] 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()] except FileNotFoundError: print("Warning: API requirements.txt not found.")