Common Tasks - Core
Update
Best practice for updating a Home Assistant installation:
-
Backup your installation.
-
Check the release notes for breaking changes on Home Assistant release notes. Be sure to check all release notes between the version you are running and the one you are upgrading to. Use the search function in your browser (
CTRL + f
/CMD + f
) and search for Breaking Changes. -
Stop the Home Assistant service.
-
Switch to the user that is running Home Assistant
sudo -u homeassistant -H -s
-
Activate the virtual environment that Home Assistant is running in
source /srv/homeassistant/bin/activate
-
Download and install the new version
pip3 install --upgrade homeassistant
-
When that is complete start the service again for it to use the new files.
Run a specific version
In the event that a Home Assistant Core version doesn’t play well with your hardware setup, you can downgrade to a previous release. In this example 2023.8.2
is used as the target version but you can choose the version you desire to run.
-
Stop the Home Assistant service.
-
Switch to the user that is running Home Assistant
sudo -u homeassistant -H -s
-
Activate the virtual environment that Home Assistant is running in
source /srv/homeassistant/bin/activate
-
Download and install the version you want
pip3 install homeassistant==2023.8.2
-
When that is complete start the service again for it to use the new files.
Run a beta version
If you would like to test next release before anyone else, you can install the beta version.
-
Stop the Home Assistant service.
-
Switch to the user that is running Home Assistant
sudo -u homeassistant -H -s
-
Activate the virtual environment that Home Assistant is running in
source /srv/homeassistant/bin/activate
-
Download and install the beta version
pip3 install --pre --upgrade homeassistant
-
When that is complete start the service again for it to use the new files.
Run a development version
If you want to stay on the bleeding-edge Home Assistant Core development branch, you can upgrade to dev
.
The dev
branch is likely to be unstable. Potential consequences include loss of data and instance corruption.
-
Stop the Home Assistant service.
-
Switch to the user that is running Home Assistant
sudo -u homeassistant -H -s
-
Activate the virtual environment that Home Assistant is running in
source /srv/homeassistant/bin/activate
-
Download and install the version you want
pip3 install --upgrade git+https://github.com/home-assistant/core.git@dev
-
When that is complete start the service again for it to use the new files.
Configuration check
-
Switch to the user that is running Home Assistant
sudo -u homeassistant -H -s
-
Activate the virtual environment that Home Assistant is running in
source /srv/homeassistant/bin/activate
-
Run the configuration check
Run the full check:
hass --script check_config
Listing all loaded files:
hass --script check_config --files
Viewing a integration’s configuration (
light
in this example):hass --script check_config --info light
Or all integrations’ configuration
hass --script check_config --info all
You can get help from the command line using:
hass --script check_config --help
-
When that is complete restart the service for it to use the new files.