File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -12,22 +12,24 @@ python training.
1212Getting 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
18172 ) 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
3234Resampling
3335----------
@@ -58,7 +60,9 @@ static resources (icons and photos).
5860
5961To start the service, run:
6062
63+ ``` bash
6164 (modernpython) $ python webapp.py
65+ ```
6266
6367Then point your browser to ` http://localhost:8080/ `
6468
You can’t perform that action at this time.
0 commit comments