You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/arwn.markdown
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ redirect_from:
17
17
18
18
The `arwn` sensor platform is a client for the [Ambient Radio Weather Network](http://github.com/sdague/arwn) project. This collects weather station data and makes it available in an MQTT subtree.
19
19
20
-
To use your ARWN setup, you must already have configured the [MQTT](mqtt) platform. Then add the following to your `configuration.yaml` file:
20
+
To use your ARWN setup, you must already have configured the [MQTT](/components/mqtt/) platform. Then add the following to your `configuration.yaml` file:
Copy file name to clipboardExpand all lines: source/_docs/installation/virtualenv.markdown
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -14,12 +14,15 @@ If you already have Python 3.6 or later installed (we suggest 3.7 or later), you
14
14
15
15
It's recommended when installing Python packages that you use a [virtual environment](https://docs.python.org/3.6/library/venv.html#module-venv). This will make sure that your Python installation and Home Assistant installation won't impact one another. The following steps will work on most UNIX like systems.
16
16
17
-
_(If you're on a Debian based system, you will need to install Python virtual environment support using `apt-get install python3-pip python3-venv`. You may also need to install development libraries using `apt-get install build-essential libssl-dev libffi-dev python3-dev`.)_
18
-
19
-
<pclass='Note'>
20
-
It is recommended to use the [advanced guide](/docs/installation/raspberry-pi/) which allows for the installation to run as a `homeassistant` user. The steps below may be shorter but some users find difficulty when applying updates and may run into issues.
17
+
<pclass='note'>
18
+
This is a generic guide for running Home Assistant under Python. We recommend to use [our recommended installation guides](/docs/installation/#recommended). The steps below may be shorter but some users find difficulty when applying updates and may run into issues.
21
19
</p>
22
20
21
+
{% comment %}
22
+
This page describes installation instructions for a pure Python installation.
23
+
It should not contain any OS specific instructions.
24
+
{% endcomment %}
25
+
23
26
### Install
24
27
25
28
1. Create a virtual environment in your current directory:
@@ -34,20 +37,15 @@ It is recommended to use the [advanced guide](/docs/installation/raspberry-pi/)
34
37
```
35
38
$ source bin/activate
36
39
```
37
-
4. Install wheel:
38
-
```
39
-
$ python3 -m pip install wheel
40
-
```
41
-
5. Install Home Assistant:
40
+
4. Install Home Assistant:
42
41
```
43
42
$ python3 -m pip install homeassistant
44
43
```
45
-
6. Configure it to [autostart](/docs/autostart/)
46
-
7. Or run Home Assistant manually:
44
+
5. Run Home Assistant:
47
45
```
48
46
$ hass --open-ui
49
47
```
50
-
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
48
+
6. You can now reach the web interface on `http://ipaddress:8123/` - the first start may take a couple of minutes before the web interface is available. This can take longer if you're using lower-end hardware like a Raspberry Pi Zero.
51
49
52
50
### Upgrade
53
51
@@ -60,7 +58,7 @@ It is recommended to use the [advanced guide](/docs/installation/raspberry-pi/)
60
58
$ python3 -m pip install --upgrade homeassistant
61
59
```
62
60
3. Start Home Assistant
63
-
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
61
+
4. You can now reach the web interface on `http://ipaddress:8123/` - the first start may take some time before the web interface is available, depending on how many integrations need to be upgraded.
- In the future, if you want to start Home Assistant manually again, follow step 2, 3 and 5.
104
102
- It's recommended to run Home Assistant as a dedicated user.
103
+
- If you want Home Assistant to automatically start at boot, check the [autostart docs](/docs/autostart/)
105
104
106
105
<pclass='info'>
107
106
Looking for more advanced guides? Check our [Raspbian guide](/docs/installation/raspberry-pi/) or the [other installation guides](/docs/installation/).
@@ -114,4 +113,5 @@ If you've upgraded Python (for example, you were running 3.7.1 and now you've in
114
113
```bash
115
114
$ mv homeassistant homeassistant.old
116
115
```
117
-
Then follow the [Install](/docs/installation/virtualenv/#install) steps again, being sure to use the newly installed version of Python.
116
+
117
+
Then follow the [Install](#install) steps again, being sure to use the newly installed version of Python.
0 commit comments