Created
November 14, 2021 14:38
-
-
Save shivasiddharth/1c457e62413e7a1441dcab11b0fe7757 to your computer and use it in GitHub Desktop.
Fix Kodi Raspberry Pi OS No installation candidate issue
This file contains 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
sudo sh -c "echo 'deb http://ftp.us.debian.org/debian/ bullseye main contrib non-free' >> /etc/apt/sources.list" | |
sudo sh -c "echo 'deb http://deb.debian.org/debian bullseye main contrib non-free' >> /etc/apt/sources.list" | |
sudo apt-get update | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys XXXXXXXXXXXX | |
Replace XXXXXXXXXX with the first alphanumeric key. | |
sudo apt-get update | |
sudo apt-get install kodi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment