mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
b33466d392
* Test new APT builds * test build * final changes for bookworm and jammy * - Include updateHyperionUser script again - Update package dependencies for APT builds * Installation guide updated * Removed alpha notes and added arm64 APT builds * update docker-compile script * Overwrite CMAKE_SYSTEM_PROCESSOR on Windows builds
1.6 KiB
1.6 KiB
Installation
This page contains general installation steps for Hyperion. For Linux please follow the instructions below. For Windows is an installation file available on our Release page.
Linux:
On the following operating systems, Hyperion can currently be installed/updated using the method listed below:
- Raspbian Stretch/Raspberry Pi OS and later (armhf/arm64)
- Debian Stretch (9) and later (armhf/arm64/x86_64)
- Ubuntu 18.04 and later (armhf/arm64/x86_64)
Install Hyperion:
- Add necessary packages for the installation:
sudo apt-get update && sudo apt-get install wget gpg apt-transport-https lsb-release
- Add Hyperion’s official GPG key:
wget -qO- https://apt.hyperion-project.org/hyperion.pub.key | sudo gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg
- Add Hyperion-Project to your APT sources:
echo "deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hyperion.list
- Update your local package index and install Hyperion:
sudo apt-get update && sudo apt-get install hyperion
Update Hyperion:
sudo apt-get install hyperion
If you want to uninstall Hyperion, use the following commands:
- Remove Hyperion:
sudo apt-get --purge autoremove hyperion
- Remove the Hyperion-Project APT source from your system:
sudo rm /usr/share/keyrings/hyperion.pub.gpg /etc/apt/sources.list.d/hyperion.list