mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 22:06:50 +00:00
Adding details on upgrade, beta, and versions (#8646)
Rather than incomplete instructions in the upgrade page, adding the details here
This commit is contained in:
parent
b802eb6937
commit
5ed9c98da7
@ -48,26 +48,55 @@ It is recommended to use the [advanced guide](/docs/installation/raspberry-pi/)
|
|||||||
$ hass --open-ui
|
$ hass --open-ui
|
||||||
```
|
```
|
||||||
8. You can now reach the web interface on `http://ipaddress:8123/` - the first start may take up to 20 minutes before the web interface is available
|
8. You can now reach the web interface on `http://ipaddress:8123/` - the first start may take up to 20 minutes before the web interface is available
|
||||||
|
|
||||||
|
|
||||||
### {% linkable_title Upgrade %}
|
### {% linkable_title Upgrade %}
|
||||||
|
|
||||||
1. Stop Home Assistant
|
1. Stop Home Assistant
|
||||||
|
|
||||||
2. Open the directory where the virtual environment is located:
|
2. Open the directory where the virtual environment is located, activate the virtual environment, then upgrade Home Assistant:
|
||||||
```
|
```bash
|
||||||
$ cd homeassistant
|
$ cd homeassistant
|
||||||
```
|
|
||||||
3. Activate the virtual environment:
|
|
||||||
```
|
|
||||||
$ source bin/activate
|
$ source bin/activate
|
||||||
```
|
|
||||||
4. Upgrade Home Assistant:
|
|
||||||
```
|
|
||||||
$ python3 -m pip install --upgrade homeassistant
|
$ python3 -m pip install --upgrade homeassistant
|
||||||
```
|
```
|
||||||
5. Start Home Assistant
|
3. Start Home Assistant
|
||||||
6. You can now reach the web interface on `http://ipaddress:8123/` - the first start may take up to 20 minutes before the web interface is available
|
4. You can now reach the web interface on `http://ipaddress:8123/` - the first start may take up to 20 minutes before the web interface is available
|
||||||
|
|
||||||
|
### {% linkable_title Run a specific version %}
|
||||||
|
|
||||||
|
In the event that a Home Assistant version doesn't play well with your hardware setup, you can downgrade to a previous release. For example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ cd homeassistant
|
||||||
|
$ source bin/activate
|
||||||
|
$ pip3 install homeassistant==0.XX.X
|
||||||
|
```
|
||||||
|
|
||||||
|
#### {% linkable_title Run the beta version %}
|
||||||
|
|
||||||
|
If you would like to test next release before anyone else, you can install the beta version released every two weeks, for example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ cd homeassistant
|
||||||
|
$ source bin/activate
|
||||||
|
$ pip3 install --pre --upgrade homeassistant
|
||||||
|
```
|
||||||
|
|
||||||
|
#### {% linkable_title Run the development version %}
|
||||||
|
|
||||||
|
If you want to stay on the bleeding-edge Home Assistant development branch, you can upgrade to `dev`.
|
||||||
|
|
||||||
|
<p class='note warning'>
|
||||||
|
The "dev" branch is likely to be unstable. Potential consequences include loss of data and instance corruption.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ cd homeassistant
|
||||||
|
$ source bin/activate
|
||||||
|
$ pip3 install --upgrade git+git://github.com/home-assistant/home-assistant.git@dev
|
||||||
|
```
|
||||||
|
|
||||||
### {% linkable_title Notes %}
|
### {% linkable_title Notes %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user