2017-04-07 10:30:38 +02:00

1.1 KiB

layout, title, description, date, sidebar, comments, sharing, footer
layout title description date sidebar comments sharing footer
page Installation on Fedora Installation of Home Assistant on your Fedora computer. 2017-03-01 07:00 true false true true

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

and Home Assistant itself.

$ pip3 install homeassistant

To isolate the Home Assistant installation a venv is handy. First create a new directory to store the installation.

$ sudo mkdir -p /opt/homeassistant
$ cd /opt/homeassistant

Now switch to the new directory, setup the venv, and activate it.

$ cd /opt/homeassistant
$ pyvenv-3.5 .
$ source bin/activate

Install Home Assistant itself.

$ pip3 install homeassistant

Check the autostart section in the documentation for further details.