From c66aa42310be2c7ee224179e9ab59cf6adcd7dce Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Fri, 24 May 2024 17:10:15 -0700 Subject: [PATCH] Update intro.md --- docs/intro.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/intro.md b/docs/intro.md index 3b1f09a..2299d53 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -22,7 +22,7 @@ hide_title: true ![Open WebUI Demo](/img/demo.gif) -## Quick Start with Docker 🐳 +## Quick Start with Docker 🐳 (Recommended) :::warning When using Docker to install Open WebUI, make sure to include the `-v open-webui:/app/backend/data` in your Docker command. This step is crucial as it ensures your database is properly mounted and prevents any loss of data. @@ -84,6 +84,26 @@ Both commands facilitate a built-in, hassle-free installation of both Open WebUI After installation, you can access Open WebUI at [http://localhost:3000](http://localhost:3000). Enjoy! 😄 +## Installation with `pip` (Beta) + +For users who prefer to use Python's package manager `pip`, Open WebUI offers a installation method. Python 3.11 is required for this method. + +1. **Install Open WebUI**: + Open your terminal and run the following command: + + ```bash + pip install open-webui + ``` + +2. **Start Open WebUI**: + Once installed, start the server using: + + ```bash + open-webui serve + ``` + +This method installs all necessary dependencies and starts Open WebUI, allowing for a simple and efficient setup. After installation, you can access Open WebUI at [http://localhost:8080](http://localhost:8080). Enjoy! 😄 + ### Other Installation Methods We offer various installation alternatives, including non-Docker native installation methods, Docker Compose, Kustomize, and Helm. Visit our [Open WebUI Documentation](https://docs.openwebui.com/getting-started/) or join our [Discord community](https://discord.gg/5rJgQTnV4s) for comprehensive guidance.