This commit is contained in:
Timothy Jaeryang Baek
2025-01-15 12:56:36 -08:00
parent 20ebb874fd
commit 4bdb829064
4 changed files with 39 additions and 5 deletions

View File

@@ -121,14 +121,16 @@ Once `uv` is installed, running Open WebUI is a breeze. Use the command below, e
- **macOS/Linux**:
```bash
DATA_DIR=~/.open-webui uvx --python 3.11 open-webui serve
DATA_DIR=~/.open-webui uvx --python 3.11 open-webui@latest serve
```
- **Windows**:
```powershell
$env:DATA_DIR="C:\open-webui\data"; uvx --python 3.11 open-webui serve
$env:DATA_DIR="C:\open-webui\data"; uvx --python 3.11 open-webui@latest serve
```
### Installation with `pip`
For users installing Open WebUI with Python's package manager `pip`, **it is strongly recommended to use Python runtime managers like `uv` or `conda`**. These tools help manage Python environments effectively and avoid conflicts.