Skip to content

Commit 805ff18

Browse files
hillaryfraleyfabaff
authored andcommitted
Fixed a few typos; formatted into numbered steps. (home-assistant#1115)
1 parent b47b7a0 commit 805ff18

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

source/developers/development_environment.markdown

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,27 @@ sharing: true
99
footer: true
1010
---
1111

12-
You will need to set up a development environment if you want to start developing a new feature or component for Home Assistant. Please follow these steps to get setup.
13-
Visit the [the Home Assistant repository](https://github.com/home-assistant/home-assistant) first and click fork in the top right.
12+
You'll need to set up a development environment if you want to develop a new feature or component for Home Assistant. Read on to learn how to set up.
1413

15-
We suggest that you setup a virtual environment using [`venv`](https://docs.python.org/3.4/library/venv.html) before running the setup script.
14+
1. Visit the [the Home Assistant repository](https://github.com/home-assistant/home-assistant) and click "fork."
1615

17-
```bash
18-
$ git clone https://github.com/YOUR_GIT_USERNAME/home-assistant.git
19-
$ cd home-assistant
20-
$ git remote add upstream https://github.com/home-assistant/home-assistant.git
21-
$ script/setup
22-
```
23-
On Windows you can use `python setup.py develop` instead of the setup script.
16+
* Consider setting up a virtual environment using [`venv`](https://docs.python.org/3.4/library/venv.html) before running the setup script.
2417

25-
After following these steps, running `hass` will invoke your local installation.
18+
```bash
19+
$ git clone https://github.com/YOUR_GIT_USERNAME/home-assistant.git
20+
$ cd home-assistant
21+
$ git remote add upstream https://github.com/home-assistant/home-assistant.git
22+
$ script/setup
23+
```
24+
* On Windows, you can use `python setup.py develop` instead of the setup script.
25+
26+
2. Run `hass` to invoke your local installation.
2627

2728
### Developing on Windows
28-
If you are using Windows as a development platform ensure you have the correct Microsoft Visual C++ build tools installed. Please check [the Windows Compilers](https://wiki.python.org/moin/WindowsCompilers) section on the [Python website](https://www.python.org/) for details. Validation using `tox` will fail if this is not done correctly.
29+
If you are using Windows as a development platform, make sure that you have the correct Microsoft Visual C++ build tools installed. Check the [Windows Compilers](https://wiki.python.org/moin/WindowsCompilers) section on the [Python website](https://www.python.org/) for details. Validation using `tox` will fail if this is not done correctly.
2930

30-
Ensure you install or upgrade the Setuptools Python package. It contains compatibility improvements and adds automatic use of compilers:
31-
```bash
32-
pip install --upgrade setuptools
33-
```
31+
Also, make sure to install or upgrade the `Setuptools` Python package -- it contains compatibility improvements and adds automatic use of compilers:
32+
```bash
33+
pip install --upgrade setuptools
34+
```
3435

0 commit comments

Comments
 (0)