Files
docs/docs/getting-started/quick-start/tab-python/CondaWindows.md
Timothy J. Baek 77b8f6b8d0 fix: python 3.11
2024-11-05 21:41:46 -08:00

28 lines
340 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
```