mirror of
https://github.com/open-webui/docs.git
synced 2026-01-04 02:36:55 +07:00
773 B
773 B
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:::