mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 15:56:49 +00:00

* Fixing broken links in LaMetric documentation * Fix broken links in Apache documentation * Fix broken links in nginx documentation * Fix broken links in Docker documentation * Fix broken link in Synology documentation * Fix broken link in armbian documentation * Fix broken link in cover.rfxtrx * Fix broken links in Installation notebooks docs
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
---
|
|
title: "Installation on a Armbian system"
|
|
description: "Instructions to install Home Assistant on an Armbian-powered systems."
|
|
---
|
|
|
|
[armbian](https://www.armbian.com) runs on a wide-variety of [ARM development boards](https://www.armbian.com/download/). Currently there are around 50 boards supported inclusive the OrangePi family, Cubieboard, Pine64, and Odroid.
|
|
|
|
Setup Python and `pip`:
|
|
|
|
```bash
|
|
sudo apt-get update
|
|
sudo apt-get install python3-dev python3-pip
|
|
```
|
|
|
|
Now that you installed python, there are two ways to install Home Assistant:
|
|
1. It is recommended to install Home Assistant in a virtual environment to avoid using `root`, using the [VirtualEnv instructions](/docs/installation/virtualenv/)
|
|
2. Alternatively, you can install Home Assistant for the user you created when first booting Armbian:
|
|
|
|
```bash
|
|
sudo pip3 install homeassistant
|
|
hass --open-ui
|
|
```
|
|
|
|
Running these commands will:
|
|
|
|
- Install Home Assistant
|
|
- Launch Home Assistant and serve the web interface on `http://localhost:8123`
|
|
- the configuration files will be created in /home/{user}/.homeassistant
|
|
|
|
|