12 lines
274 B
Bash
12 lines
274 B
Bash
# Local AI system installation
|
|
|
|
# Install ollama
|
|
curl -fsSL https://ollama.com/install.sh | sh
|
|
# OLLAMA_MODELS variable is set in ~/.bash_aliases
|
|
|
|
# Install llm
|
|
pipx install llm
|
|
llm install llm-ollama
|
|
|
|
echo "After restart, install some models with `ollama pull MODELNAME`!"
|