mirror of
https://github.com/open-webui/docs.git
synced 2026-01-03 02:09:51 +07:00
27 lines
339 B
Markdown
27 lines
339 B
Markdown
|
|
# Install with Conda
|
|
|
|
1. **Create a Conda Environment:**
|
|
|
|
```bash
|
|
conda create -n open-webui python=3.11
|
|
```
|
|
|
|
2. **Activate the Environment:**
|
|
|
|
```bash
|
|
conda activate open-webui
|
|
```
|
|
|
|
3. **Install Open WebUI:**
|
|
|
|
```bash
|
|
pip install open-webui
|
|
```
|
|
|
|
4. **Start the Server:**
|
|
|
|
```bash
|
|
open-webui serve
|
|
```
|