diff --git a/docs/getting-started/quick-start/tab-python/Venv.md b/docs/getting-started/quick-start/tab-python/Venv.md new file mode 100644 index 0000000..0acaf1f --- /dev/null +++ b/docs/getting-started/quick-start/tab-python/Venv.md @@ -0,0 +1,38 @@ + +# Using Virtual Environments + +Create isolated Python environments using `venv`. + +## Steps + +1. **Create a Virtual Environment:** + + ```bash + python3 -m venv venv + ``` + +2. **Activate the Virtual Environment:** + + - On Linux/macOS: + + ```bash + source venv/bin/activate + ``` + + - On Windows: + + ```bash + venv\Scripts\activate + ``` + +3. **Install Open WebUI:** + + ```bash + pip install open-webui + ``` + +4. **Start the Server:** + + ```bash + open-webui serve + ```