I haven’t set anything up in HomeAssistant yet, but I have it running and the portal is working (plus it is showing some devices, so it seems to be mostly functional). Here are the steps I took for installing HomeAssistant on Debian 12.0 LXC in Proxmox:
sudo apt install -y build-essential libffi-dev libssl-dev zlib1g-dev libjpeg-dev
python3 -m venv ha
cd ha
source bin/activate
pip install --upgrade pip setuptools wheel
pip install --force-reinstall --no-cache-dir homeassistant
# Ran hass and saw errors related to josepy
pip show cryptography pyopenssl josepy
# cryptography and pyopenssl were fine. josepy was later than what HA wanted
pip install 'josepy==1.13.0'
That was pretty much all that was needed to have a functional and running hass. Note that this is running with python v3.11. Will update the post as I explore HomeAssistant some more.
1 Reply to “Installing HomeAssistant on Debian 12.0 LXC in Proxmox”