23 lines
522 B
Bash
23 lines
522 B
Bash
#!/bin/bash
|
|
|
|
##DEPS/REQS
|
|
#sudo apt install curl git snap python3 pip uvx
|
|
|
|
##REPO/PKG MANAGER INSTALL
|
|
#snap install ollama
|
|
#snap install ollama-webui
|
|
#snap install open-webui
|
|
#pip install open-webui --break-system-packages
|
|
|
|
##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
|
|
|
|
DATA_DIR=~/.open-webui .local/bin/uvx --python 3.11 open-webui@latest serve --port 8088
|