2021-07-14 20:21:29 +02:00
|
|
|
|
|
|
|
|
|
# Installation
|
2021-12-03 13:17:43 +01:00
|
|
|
|
This page contains general installation steps for Hyperion.
|
2021-07-14 20:21:29 +02:00
|
|
|
|
|
2021-12-03 13:17:43 +01:00
|
|
|
|
## Windows & macOS
|
|
|
|
|
For Windows and macOS is an installation file available on our [Release page](https://github.com/hyperion-project/hyperion.ng/releases).
|
2021-07-14 20:21:29 +02:00
|
|
|
|
|
|
|
|
|
## Linux:
|
|
|
|
|
On the following operating systems, Hyperion can currently be installed/updated using the method listed below:
|
2021-11-17 20:35:28 +01:00
|
|
|
|
- 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)
|
2021-07-14 20:21:29 +02:00
|
|
|
|
|
|
|
|
|
***
|
|
|
|
|
|
|
|
|
|
### Install Hyperion:
|
2021-11-17 20:35:28 +01:00
|
|
|
|
1. Add necessary packages for the installation:
|
|
|
|
|
```bash
|
|
|
|
|
sudo apt-get update && sudo apt-get install wget gpg apt-transport-https lsb-release
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2. Add Hyperion’s official GPG key:
|
2021-07-14 20:21:29 +02:00
|
|
|
|
```bash
|
2021-08-20 18:04:04 +02:00
|
|
|
|
wget -qO- https://apt.hyperion-project.org/hyperion.pub.key | sudo gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg
|
2021-07-14 20:21:29 +02:00
|
|
|
|
```
|
|
|
|
|
|
2021-11-17 20:35:28 +01:00
|
|
|
|
3. Add Hyperion-Project to your APT sources:
|
2021-07-14 20:21:29 +02:00
|
|
|
|
```bash
|
2021-08-20 13:13:12 +02:00
|
|
|
|
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
|
2021-07-14 20:21:29 +02:00
|
|
|
|
```
|
|
|
|
|
|
2021-11-17 20:35:28 +01:00
|
|
|
|
4. Update your local package index and install Hyperion:
|
2021-07-14 20:21:29 +02:00
|
|
|
|
```bash
|
|
|
|
|
sudo apt-get update && sudo apt-get install hyperion
|
|
|
|
|
```
|
|
|
|
|
***
|
|
|
|
|
|
|
|
|
|
### Update Hyperion:
|
|
|
|
|
```bash
|
|
|
|
|
sudo apt-get install hyperion
|
|
|
|
|
```
|
|
|
|
|
***
|
|
|
|
|
|
|
|
|
|
### If you want to uninstall Hyperion, use the following commands:
|
|
|
|
|
1. Remove Hyperion:
|
|
|
|
|
```bash
|
|
|
|
|
sudo apt-get --purge autoremove hyperion
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2. Remove the Hyperion-Project APT source from your system:
|
|
|
|
|
```bash
|
2021-08-25 18:17:19 +02:00
|
|
|
|
sudo rm /usr/share/keyrings/hyperion.pub.gpg /etc/apt/sources.list.d/hyperion.list
|
2021-07-14 20:21:29 +02:00
|
|
|
|
```
|