Skip to content

Commit 11500ef

Browse files
committed
fix: #799
1 parent b9663c6 commit 11500ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/services/crawler_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def get_status(self) -> dict:
203203

204204
def _build_command(self, config: CrawlerStartRequest) -> list:
205205
"""构建 main.py 命令行参数"""
206-
cmd = ["python", "main.py"]
206+
cmd = ["uv", "run", "python", "main.py"]
207207

208208
cmd.extend(["--platform", config.platform.value])
209209
cmd.extend(["--lt", config.login_type.value])

0 commit comments

Comments
 (0)