8 lines
295 B
Bash
Executable File
8 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Provides standalone llama-cli, llama-server, and related tools.
|
|
# Ollama bundles its own copy of llama.cpp internally — the two coexist
|
|
# at the package level but share GPU resources at runtime.
|
|
yay -S --answerdiff None --answerclean All --noconfirm llama-cpp
|