From 2b89b9cdae1c7d7b263263cb98a6f7a6470f9824 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Thu, 2 Oct 2025 13:00:23 -0400 Subject: [PATCH] clarify-uv-init --- docs/docs/get-started/install.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/docs/get-started/install.mdx b/docs/docs/get-started/install.mdx index 830a8f5e..38017e93 100644 --- a/docs/docs/get-started/install.mdx +++ b/docs/docs/get-started/install.mdx @@ -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.