Installation on Fedora
Fedora is an operating system based on the Linux kernel, developed by the community-supported Fedora Project. There are releases for x86 and x86_64 including ARM and other architectures.
Install the development package of Python.
sudo dnf -y install python3-devel redhat-rpm-config
To isolate the Open Peer Power installation a venv
is handy. First create a new directory to store the installation and adjust the permissions.
sudo mkdir -p /opt/openpeerpower
sudo useradd -rm openpeerpower -G dialout
sudo chown -R openpeerpower:openpeerpower /opt/openpeerpower
Now switch to the new directory, setup the venv
, and activate it.
sudo -u openpeerpower -H -s
cd /opt/openpeerpower
python3.8 -m venv .
source bin/activate
Install Open Peer Power itself.
pip3 install openpeerpower colorlog
Check the autostart section in the documentation for further details and the Firewall section if you want to access your Open Peer Power installation.