|
|
|
|
|
by p1mrx
858 days ago
|
|
To run Home Assistant on Gentoo, I previously used HomeAssistantRepository but it was constantly breaking. A couple years ago I gave up and switched to pip in a venv, and it's been fine ever since. This should work on any distro: $ python -m venv hass.env
$ source hass.env/bin/activate
(hass.env) $ pip install homeassistant
The remaining puzzle piece is an init.d script; mine is a hacked-up remnant of the one from HomeAssistantRepository. |
|