Skip to content

Commit 8490dbc

Browse files
committed
Improve markup
1 parent 3e63a3e commit 8490dbc

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,24 @@ python training.
1212
Getting Setup
1313
-------------
1414

15-
1) Install the latest Python 3.6 (at least 3.6.1) from
16-
https://www.python.org
15+
1) Install Python 3.6.1 or later from https://www.python.org
1716

1817
2) Setup and activate a virtual environment:
1918

19+
```bash
2020
$ python3.6 -m venv modernpython
2121
$ source modernpython/bin/activate
22+
```
2223

23-
3) Install the packages used in the code
24-
25-
(modernpython) $ pip install pyflakes
26-
(modernpython) $ pip install bottle
27-
(modernpython) $ pip install pytest
28-
(modernpython) $ pip install hypothesis
29-
(modernpython) $ pip install mypy
24+
3) Install the packages used in the examples:
3025

26+
```bash
27+
(modernpython) $ pip install pyflakes
28+
(modernpython) $ pip install bottle
29+
(modernpython) $ pip install pytest
30+
(modernpython) $ pip install hypothesis
31+
(modernpython) $ pip install mypy
32+
```
3133

3234
Resampling
3335
----------
@@ -58,7 +60,9 @@ static resources (icons and photos).
5860

5961
To start the service, run:
6062

63+
```bash
6164
(modernpython) $ python webapp.py
65+
```
6266

6367
Then point your browser to `http://localhost:8080/`
6468

0 commit comments

Comments
 (0)