15 lines
403 B
Bash
15 lines
403 B
Bash
#!/bin/bash
|
|
|
|
#apt get install curl git snap python3 pip uvx
|
|
#snap install ollama
|
|
#snap install ollama-webui
|
|
#snap install open-webui
|
|
#pip install open-webui --break-system-packages
|
|
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
|
|
DATA_DIR=~/.open-webui uvx --python 3.11 open-webui@latest serve
|
|
|