Skip to content

Commit 3d0fe07

Browse files
committed
Merge branch 'current' into next
2 parents fff4cf5 + 8faccaa commit 3d0fe07

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

source/_components/arwn.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ redirect_from:
1717

1818
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.
1919

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:
2121

2222
```yaml
2323
# Example configuration.yaml entry

source/_components/sensor.rflink.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ devices:
5858
default: RFLink ID
5959
type: string
6060
sensor_type:
61-
description: Override automatically detected type of sensor. For list of [values](components/sensor.rflink/#sensors-types) see below.
61+
description: Override automatically detected type of sensor. For list of [values](/components/sensor.rflink/#sensors-types) see below.
6262
required: true
6363
type: string
6464
unit_of_measurement:

source/_docs/installation/virtualenv.markdown

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ If you already have Python 3.6 or later installed (we suggest 3.7 or later), you
1414

1515
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.
1616

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-
<p class='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+
<p class='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.
2119
</p>
2220

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+
2326
### Install
2427

2528
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/)
3437
```
3538
$ source bin/activate
3639
```
37-
4. Install wheel:
38-
```
39-
$ python3 -m pip install wheel
40-
```
41-
5. Install Home Assistant:
40+
4. Install Home Assistant:
4241
```
4342
$ python3 -m pip install homeassistant
4443
```
45-
6. Configure it to [autostart](/docs/autostart/)
46-
7. Or run Home Assistant manually:
44+
5. Run Home Assistant:
4745
```
4846
$ hass --open-ui
4947
```
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.
5149
5250
### Upgrade
5351
@@ -60,7 +58,7 @@ It is recommended to use the [advanced guide](/docs/installation/raspberry-pi/)
6058
$ python3 -m pip install --upgrade homeassistant
6159
```
6260
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.
6462
6563
### Run a specific version
6664
@@ -74,7 +72,7 @@ $ pip3 install homeassistant==0.XX.X
7472

7573
#### Run the beta version
7674

77-
If you would like to test next release before anyone else, you can install the beta version released every two weeks, for example:
75+
If you would like to test next release before anyone else, you can install the beta version, for example:
7876

7977
```bash
8078
$ cd homeassistant
@@ -102,6 +100,7 @@ $ pip3 install --upgrade git+git://github.com/home-assistant/home-assistant.git@
102100

103101
- In the future, if you want to start Home Assistant manually again, follow step 2, 3 and 5.
104102
- 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/)
105104

106105
<p class='info'>
107106
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
114113
```bash
115114
$ mv homeassistant homeassistant.old
116115
```
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

Comments
 (0)