mirror of
https://github.com/open-webui/docs.git
synced 2026-01-02 17:59:41 +07:00
1.0 KiB
1.0 KiB
Install with Conda
-
Create a Conda Environment:
conda create -n open-webui python=3.11 -
Activate the Environment:
conda activate open-webui -
Install Open WebUI:
pip install open-webui -
Start the Server:
open-webui serve
:::tip 'open-webui: command not found'? If your terminal says the command doesn't exist:
- Ensure your conda environment is activated (
conda activate open-webui). - If you still get an error, try running it via Python directly:
python -m open_webui serve - If you want to store your data in a specific place, use (Linux/Mac):
DATA_DIR=./data open-webui serveor (Windows):$env:DATA_DIR=".\data"; open-webui serve:::
Uninstall
-
Remove the Conda Environment:
conda remove --name open-webui --all -
Remove Data (WARNING: Deletes all data): Delete your data directory (usually
~/.open-webuiunless configured otherwise):rm -rf ~/.open-webui