Top Tags

Ollama installed on Linux with WebUI

Guide to installing Ollama on Linux with a web user interface.

Install Ollama

bash
1curl -fsSL https://ollama.com/install.sh | sh

Start Ollama service

bash
1sudo systemctl start ollama
2sudo systemctl enable ollama

Install Ollama WebUI

bash
1docker run -d --name open-webui \
2 -p 3000:8080 \
3 -v open-webui:/app/backend/data \
4 --add-host=host.docker.internal:host-gateway \
5 ghcr.io/open-webui/open-webui:main