mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-01 07:46:49 +00:00
1.5 KiB
1.5 KiB
Run a beta version
If you would like to test next release before anyone else, you can install the beta version.
{% if page.installation == "os" or page.installation == "supervised" %}
{% tabbed_block %}
-
title: From the UI content: |
- In your Home Assistant UI navigate to the Supervisor panel
- Navigate to the System tab
- Click the link that says "Join beta"
- Navigate to the Dashboard tab
- Install the update that is presented to you
-
title: From the CLI content: |
-
Join the beta channel
ha supervisor options --channel beta
-
Reload the supervisor
ha supervisor reload
-
Update Home Assistant core to the latest beta version
ha core update
-
{% endtabbed_block %}
{% elsif page.installation == "container" %}
docker pull {{ site.installation.container.base }}:beta
You then need to recreate the container with the new image.
{% elsif page.installation == "core" %}
-
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 restart the service for it to use the new files.
{% endif %}