Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Mendon Kissling
161465713c Merge branch 'docs-peer-review' of https://github.com/langflow-ai/openrag into docs-peer-review 2025-10-02 13:01:26 -04:00
Mendon Kissling
2b89b9cdae clarify-uv-init 2025-10-02 13:00:23 -04:00
Mendon Kissling
1750836509 Merge branch 'main' into docs-peer-review 2025-10-02 12:56:56 -04:00

View file

@ -31,15 +31,14 @@ The `.whl` file is currently available as an internal download during public pre
The OpenRAG wheel installs the Terminal User Interface (TUI) for running and managing OpenRAG.
1. Create a new project with a virtual environment using `uv`.
This creates and activates a virtual environment for your project.
1. Create a new project with a virtual environment using `uv init`.
```bash
uv init YOUR_PROJECT_NAME
cd YOUR_PROJECT_NAME
```
The terminal prompt won't change like it would when using `venv`, but the `uv` commands will use the project's virtual environment.
You won't see a `(venv)` prompt change, but `uv` commands automatically use the project's virtual environment.
For more information on virtual environments, see the [uv documentation](https://docs.astral.sh/uv/pip/environments).
2. Add the local OpenRAG wheel to your project's virtual environment.