This commit is contained in:
DrMelone
2025-12-21 19:09:09 +01:00
parent 4e81d47067
commit 7a04bfd0e2
8 changed files with 138 additions and 1 deletions

View File

@@ -31,3 +31,16 @@ If your terminal says the command doesn't exist:
2. If you still get an error, try running it via Python directly: `python -m open_webui serve`
3. If you want to store your data in a specific place, use (Linux/Mac): `DATA_DIR=./data open-webui serve` or (Windows): `$env:DATA_DIR=".\data"; open-webui serve`
:::
## Uninstall
1. **Remove the Conda Environment:**
```bash
conda remove --name open-webui --all
```
2. **Remove Data (WARNING: Deletes all data):**
Delete your data directory (usually `~/.open-webui` unless configured otherwise):
```bash
rm -rf ~/.open-webui
```