Skip to main content

Installing Open WebUI 5.20 on Ubuntu 22.04

  • Install Ubuntu 24.04. (Note to have sufficient storage for the models)
  • Update the ubuntu system to ensure all are up to date before installig the open-webui
sudo apt update -y && sudo apt upgrade -y

Install the Ollama

1. Download the installation script for Ollama

wget https://ollama.ai/install.sh

2. Make the script executable

sudo chmod +x install.sh

3. Run the installation script of Ollama

sudo ./install.sh

Screenshot 2025-03-16 at 18.11.43.png

4. Enable the Ollama service to start at boot using systemctl.

sudo systemctl enable ollama

5. Start the Ollama service using systemctl.

sudo systemctl start ollama

6. Check if the Ollama service is running.

sudo systemctl status ollama

Screenshot 2025-03-16 at 18.14.50.png

7. Install models for Ollama.

model llama3:8b

sudo ollama pull llama3:8b

Screenshot 2025-03-16 at 18.30.09.png

model mistral

sudo ollama pull mistral

Screenshot 2025-03-16 at 18.34.07.png

model llama3:70b

sudo ollama pull llama3:70b

Install the Open WebUI using python 3.11

1. Install the python 3.11.

sudo apt install python3.11

Screenshot 2025-03-16 at 18.43.30.png

2. Install the python3-pip

sudo python3.11 -m pip install open-webui

Screenshot 2025-03-16 at 18.47.09.png

3. Install Open WebUI using python 3.11.

sudo python3.11 -m pip install open-webui