From 78527acd88704f74b6fc954cd3dc017c49e47796 Mon Sep 17 00:00:00 2001 From: so95 Date: Fri, 13 Dec 2024 17:58:01 +0700 Subject: [PATCH] Update launch_ragflow_from_source.md (#4005) update install poetry full package - [x] Documentation Update --- docs/guides/develop/launch_ragflow_from_source.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/guides/develop/launch_ragflow_from_source.md b/docs/guides/develop/launch_ragflow_from_source.md index 9a0e34bb5..cf39aaf27 100644 --- a/docs/guides/develop/launch_ragflow_from_source.md +++ b/docs/guides/develop/launch_ragflow_from_source.md @@ -48,10 +48,14 @@ cd ragflow/ ``` 3. Install Python dependencies: - + - slim: ```bash ~/.local/bin/poetry install --sync --no-root ``` + - full: + ```bash + ~/.local/bin/poetry install --sync --no-root --with full + ``` *A virtual environment named `.venv` is created, and all Python dependencies are installed into the new environment.* ### Launch Third-party Services @@ -138,4 +142,4 @@ In your web browser, enter `http://127.0.0.1:/`, ensuring the port number 2. Stop the RAGFlow backend service: ```bash pkill -f "docker/entrypoint.sh" - ``` \ No newline at end of file + ```