Skip to content

Instantly share code, notes, and snippets.

@cgmb
Created January 27, 2026 22:23
Show Gist options
  • Select an option

  • Save cgmb/b546bd6ab1e3d90fbe9af43d8e4a4e00 to your computer and use it in GitHub Desktop.

Select an option

Save cgmb/b546bd6ab1e3d90fbe9af43d8e4a4e00 to your computer and use it in GitHub Desktop.
Install llama.cpp with Bullwinkle Devel 21 PPA
#!/bin/sh
set -eux
# ensure system is up-to-date
apt -y update
apt -y upgrade
# install add-apt-repository
apt -y install software-properties-common
# enable ppa and resolute-proposed
add-apt-repository ppa:bullwinkle-team/rocm-devel-21
sed -i 's/resolute-backports/resolute-backports resolute-proposed/' /etc/apt/sources.list.d/ubuntu.sources
apt -y update
# install
apt -y install libggml0-backend-hip llama.cpp/resolute-proposed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment