mirror of
https://github.com/open-webui/docs.git
synced 2026-01-02 17:59:41 +07:00
fix
This commit is contained in:
@@ -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
|
||||
```
|
||||
|
||||
@@ -37,3 +37,22 @@ Once `uv` is installed, running Open WebUI is a breeze. Use the command below, e
|
||||
:::tip Why set DATA_DIR?
|
||||
Setting `DATA_DIR` ensures your chats and settings are saved in a predictable location. If you don't set it, `uvx` might store it in a temporary folder that gets deleted when the process ends.
|
||||
:::
|
||||
|
||||
## Uninstall
|
||||
|
||||
To remove Open WebUI when running with `uvx`:
|
||||
|
||||
1. **Stop the Server:**
|
||||
Press `Ctrl+C` in the terminal where it's running.
|
||||
|
||||
2. **Available cleanup commands:**
|
||||
The `uvx` command runs the application ephemerally or from cache. To remove cached components:
|
||||
```bash
|
||||
uv cache clean
|
||||
```
|
||||
|
||||
3. **Remove Data (WARNING: Deletes all data):**
|
||||
Delete your data directory (default is `~/.open-webui` or the path set in `DATA_DIR`):
|
||||
```bash
|
||||
rm -rf ~/.open-webui
|
||||
```
|
||||
|
||||
@@ -43,3 +43,17 @@ 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: `DATA_DIR=./data open-webui serve`
|
||||
:::
|
||||
|
||||
## Uninstall
|
||||
|
||||
1. **Delete the Virtual Environment:**
|
||||
Simply remove the `venv` folder:
|
||||
```bash
|
||||
rm -rf venv
|
||||
```
|
||||
|
||||
2. **Remove Data (WARNING: Deletes all data):**
|
||||
Delete your data directory (usually `~/.open-webui` unless configured otherwise):
|
||||
```bash
|
||||
rm -rf ~/.open-webui
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user