Update launch_ragflow_from_source.md (#4005)
Browse filesupdate install poetry full package
- [x] Documentation Update
docs/guides/develop/launch_ragflow_from_source.md
CHANGED
|
@@ -48,10 +48,14 @@ cd ragflow/
|
|
| 48 |
```
|
| 49 |
|
| 50 |
3. Install Python dependencies:
|
| 51 |
-
|
| 52 |
```bash
|
| 53 |
~/.local/bin/poetry install --sync --no-root
|
| 54 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
*A virtual environment named `.venv` is created, and all Python dependencies are installed into the new environment.*
|
| 56 |
|
| 57 |
### Launch Third-party Services
|
|
@@ -138,4 +142,4 @@ In your web browser, enter `http://127.0.0.1:<PORT>/`, ensuring the port number
|
|
| 138 |
2. Stop the RAGFlow backend service:
|
| 139 |
```bash
|
| 140 |
pkill -f "docker/entrypoint.sh"
|
| 141 |
-
```
|
|
|
|
| 48 |
```
|
| 49 |
|
| 50 |
3. Install Python dependencies:
|
| 51 |
+
- slim:
|
| 52 |
```bash
|
| 53 |
~/.local/bin/poetry install --sync --no-root
|
| 54 |
```
|
| 55 |
+
- full:
|
| 56 |
+
```bash
|
| 57 |
+
~/.local/bin/poetry install --sync --no-root --with full
|
| 58 |
+
```
|
| 59 |
*A virtual environment named `.venv` is created, and all Python dependencies are installed into the new environment.*
|
| 60 |
|
| 61 |
### Launch Third-party Services
|
|
|
|
| 142 |
2. Stop the RAGFlow backend service:
|
| 143 |
```bash
|
| 144 |
pkill -f "docker/entrypoint.sh"
|
| 145 |
+
```
|