Files
Oli/oli
T

22 lines
486 B
Bash
Raw Normal View History

2026-04-14 20:27:13 +00:00
#!/bin/bash
2026-06-28 21:05:39 +00:00
##DEPS/REQS
#sudo apt install curl git snap python3 pip uvx
##REPO/PKG MANAGER INSTALL
2026-04-14 20:27:13 +00:00
#snap install ollama
#snap install ollama-webui
#snap install open-webui
#pip install open-webui --break-system-packages
2026-06-28 21:05:39 +00:00
##MANUAL INSTALL
#curl -fsSL https://ollama.com/install.sh | sh
#ollama serve
#sudo systemctl status ollama
#ollama run llama3.2
#curl -LsSf https://astral.sh/uv/install.sh | sh
##RUN
DATA_DIR=~/.open-webui uvx --python 3.11 open-webui@latest serve --port 8082
2026-04-14 20:27:13 +00:00