Files
open-webui-docs/docs/getting-started/quick-start/tab-python/Venv.md
silentoplayz 3e3da9e0a0 chore: format
2025-10-09 12:47:06 -04:00

500 B

Using Virtual Environments

Create isolated Python environments using venv.

Venv Steps

  1. Create a Virtual Environment:

    python3 -m venv venv
    
  2. Activate the Virtual Environment:

    • On Linux/macOS:

      source venv/bin/activate
      
    • On Windows:

      venv\Scripts\activate
      
  3. Install Open WebUI:

    pip install open-webui
    
  4. Start the Server:

    open-webui serve