HomeAssistant
Installation
Pre-Requirement
Update the system; then reboot
sudo apt update -y
sudo apt upgrade -yNext step, installing depedences :
sudo apt-get install -y python3 python3-dev python3-venv python3-pip bluez libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libtiff5 libturbojpeg0-dev tzdata ffmpeg liblapack3 liblapack-dev libatlas-base-devConfiguration
Python Venv
Create the main python venv :
python3 -m venv homeassistantSource it and install wheel
source homeassistant/bin/activatepython3 -m pip install wheelOnce you have installed the required Python package, it is now time to install Home Assistant Core
pip3 install homeassistantRun
Source the python venv and run hass command :
source homeassistant/bin/activatehassThen go to http://X.X.X.X:8123
Layrier commander :
ip a | awk '/global/ {print "http://"$2}'|sed 's/\/24/:8123/g'References
Last updated on