Installation
YAHAC can be installed in multiple ways depending on your operating system and preferences.
Download Options
Standalone Binaries
Download pre-built binaries from the latest release:
- Windows:
yahac-v*.exe- No installation required - Linux (generic):
yahac-linux-x86_64-v*- Portable executable - Linux (Arch build):
yahac-archlinux-x86_64-v*- Portable executable - Linux (AppImage):
yahac-appimage-v*-x86_64.AppImage- Portable executable for many distributions
AppImage (Linux)
# Download AppImage from releases
wget https://github.com/dseichter/yahac/releases/latest/download/yahac-appimage-v*-x86_64.AppImage
chmod +x yahac-appimage-v*-x86_64.AppImage
./yahac-appimage-v*-x86_64.AppImage
Package Managers
Debian/Ubuntu/Linux Mint
# Download .deb package from releases
wget https://github.com/dseichter/yahac/releases/latest/download/yahac_*_all.deb
sudo dpkg -i yahac_*_all.deb
sudo apt-get install -f # Fix dependencies if needed
Arch Linux/Manjaro
# Install from AUR
yay -S yahac-bin
Build from Source (Any Linux)
git clone https://github.com/dseichter/yahac.git
cd yahac
pip install -r src/requirements.txt
python src/yahac.py
First time
Info
You won't see any window appear, because yahac starts only as tray icon in your task bar .
If you start yahac the first time, it will create within your users directory a subfolder .yahac and also creates the configuration file config.json.
You will be asked to provide your URL and a token, which are needed to communication with your Home Assistant instance.

The token can be generated by opening your profile in Home Assistant, switch to security and scroll down to the long live access tokens.
More configuration is not needed to be able to proceed.
Now you can choose to proceed with adding your first sensors or make further configuration.

Package vs Binary
- Packages (.deb/.rpm/AUR): Integrate with system, handle dependencies automatically, receive updates through package manager
- Binaries/AppImage: Portable, no installation required, manual updates
See compatibility for distribution-specific information.