Created
January 27, 2026 22:23
-
-
Save cgmb/b546bd6ab1e3d90fbe9af43d8e4a4e00 to your computer and use it in GitHub Desktop.
Install llama.cpp with Bullwinkle Devel 21 PPA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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