mirror of
https://github.com/open-webui/docs
synced 2025-06-16 11:28:36 +00: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