Getting Started
Preparation
The preparation of a Fedora 22 host will only take a couple of minutes. First install Python 3.4 and the other needed packages out of the Fedora Package Collection. This ensure that you receive updates in the future.
It’s assumed that your user has an entry in the sudoers file. Otherwise, run the commands which needs more privileges as root.
1
|
|
CentOS is providing longtime support and often not shipping the latest release of a software component. To run, Python 3.x on CentOS Software Collections needs to be activated.
Step 1. Install the tools for the Software Collection
1
|
|
Step 2. Make the repository available.
1
|
|
Step 3. Install Python 3.x
1
|
|
Step 4. Start using software collections:
1
|
|
Installation
1
2
pip3 install homeassistant
hass --open-ui
Running these commands will:
- Install Home Assistant
- Launch Home Assistant and serve web interface on http://localhost:8123
Post-Installation
There is nothing else to do. If you run into any issues, please see the troubleshooting page.
If you want to see what Home Assistant can do, you can start the demo mode by running hass --demo-mode
.
In the future, if you want to update to the latest version, run pip3 install --upgrade home-assistant
.
By default, the access to port 8123 is not allowed. If you want to allow other hosts in your local network access, open port 8123.
1 2 |
|
Home Assistant will serve its web interface on http://[IP address of the host]:8123.
If you want that Home Assistant is lauched automatically, an extra step is needed to setup systemd
. You need a service file to control Home Assistant with systemd
.
1
2
3
4
5
6
7
8
9
10
11
12
su -c 'cat <<EOF >> /lib/systemd/system/home-assistant.service
[Unit]
Description=Home Assistant
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/python3.4 -m homeassistant
[Install]
WantedBy=multi-user.target
EOF'
You need to reload systemd
to make the daemon aware of the new configuration. Enable and launch Home Assistant after that.
1 2 3 |
|
If everything went well, sudo systemctl start home-assistant
should give you a positive feedback.
1 2 3 4 5 6 7 8 |
|
To get Home Assistant’s logging output, simple use journalctl
.
1
|
|
In the future, if you want to update to the latest version, run pip3 install --upgrade home-assistant
.
Those instructions were written for Fedora 22 Server and Workstation. They may work for Cloud flavor as well but this was not tested.
Coming soon…
Installation with Docker is straightforward. Adjust the following command so that /path/to/your/config/
points at the folder where you want to store your config and run it:
1
|
|
This will launch Home Assistant and serve its web interface from port 8123 on your Docker host.
When using boot2docker on OS X you are unable to map the local time to your Docker container. Replace -v /etc/localtime:/etc/localtime:ro
with -e "TZ=America/Los_Angeles"
(replacing America/Los_Angeles with your timezone)
Home Assistant uses Python 3.4. This makes installation on a Raspberry Pi a bit more difficult as it is not available in the package repository. Please follow the following instructions to get it up and running.
Step 1. Install pyenv
1
|
|
After the installation is done, run:
1
|
|
Then add these lines to the end of the file and save:
1 2 3 |
|
Step 2. Install requirements
1 2 |
|
Log out and then back in so your bashrc is reloaded.
NOTE: the rest of the commands are not being run as sudo and will install python etc under you user’s home directory.
Step 3. Install python 3.4.2 (this will take a few hours)
1
|
|
Step 4. Create Python Virtual Environment
1
|
|
Step 5. Set the virtual environment
1 2 |
|
Step 6. Install Home Assistant
1
|
|
Step 7. Start it up
1
|
|
It will be up and running on port 8123
In the future, if you want to update to the latest version, run pip3 install --upgrade home-assistant
.