mirror of
https://github.com/open-webui/docs.git
synced 2026-04-05 14:58:45 +07:00
705 B
705 B
Installation with pip
The simplest way to install Open WebUI with Python.
1. Install Open WebUI
pip install open-webui
2. Start the server
open-webui serve
Open WebUI is now running at http://localhost:8080.
:::tip 'open-webui: command not found'?
- If you used a virtual environment, make sure it's activated.
- Try running directly:
python -m open_webui serve - To store data in a specific location:
DATA_DIR=./data open-webui serve:::
Uninstall
-
Uninstall the package:
pip uninstall open-webui -
Remove data (optional, deletes all data):
rm -rf ~/.open-webui