From 16f252e7c1483e1c888e8dbe7495b2a39af2cdc0 Mon Sep 17 00:00:00 2001 From: Tim Bond Date: Tue, 6 May 2025 19:20:12 -0700 Subject: [PATCH] Update Windows uv installation docs The docs contain two commands to run on Windows. The first command can be run on any shell; the second is only valid inside PowerShell. While the syntax highlighting hints already indicate this, there is no way for the end user to have any knowledge of this; so this commit adds a notation on the second command denoting it should be run inside PowerShell --- docs/getting-started/quick-start/tab-python/Uv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/quick-start/tab-python/Uv.md b/docs/getting-started/quick-start/tab-python/Uv.md index 36ac928..6d237e0 100644 --- a/docs/getting-started/quick-start/tab-python/Uv.md +++ b/docs/getting-started/quick-start/tab-python/Uv.md @@ -25,7 +25,7 @@ Once `uv` is installed, running Open WebUI is a breeze. Use the command below, e DATA_DIR=~/.open-webui uvx --python 3.11 open-webui@latest serve ``` -- **Windows**: +- **Windows** (PowerShell): ```powershell $env:DATA_DIR="C:\open-webui\data"; uvx --python 3.11 open-webui@latest serve ```