mirror of
https://github.com/open-webui/docs.git
synced 2025-12-18 10:29:42 +07:00
495 B
495 B
Using Virtual Environments
Create isolated Python environments using venv.
Steps
-
Create a Virtual Environment:
python3 -m venv venv -
Activate the Virtual Environment:
-
On Linux/macOS:
source venv/bin/activate -
On Windows:
venv\Scripts\activate
-
-
Install Open WebUI:
pip install open-webui -
Start the Server:
open-webui serve