Skip to content

Commit f464655

Browse files
authored
Merge pull request #131 from justwriteclick/py-37
Ensure use of Python 3.7 in all tutorial commands
2 parents 048b806 + f10c37d commit f464655

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

_learn/01-sphinx-python-rtd.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Most people use Virtual Environments because it's a recommended practice when wo
7171
1. First create a Python 3 virtual environment using the `venv` module included with Python 3. Notice the example uses `python3.7` to be clear which version of Python you want.
7272
7373
```
74-
python3.6 -m venv py3-sphinx
74+
python3.7 -m venv py3-sphinx
7575
```
7676
7777
1. Now "activate" the environment. Look for the name of the virtual environment enclosed in parenthesis after activation.
@@ -88,11 +88,11 @@ Most people use Virtual Environments because it's a recommended practice when wo
8888
1. Now verify that `python` is now linked to Python 3.
8989
9090
```
91-
(py3-sphinx) $ python -V
91+
(py3-sphinx) $ python3.7 -V
9292
```
9393
9494
```
95-
(py3-sphinx) $ Python 3.7.0
95+
(py3-sphinx) $ Python 3.7.2
9696
```
9797
9898
## Install Sphinx in the Virtual Environment

0 commit comments

Comments
 (0)