Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _learn/01-sphinx-python-rtd.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Most people use Virtual Environments because it's a recommended practice when wo
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.

```
python3.6 -m venv py3-sphinx
python3.7 -m venv py3-sphinx
```

1. Now "activate" the environment. Look for the name of the virtual environment enclosed in parenthesis after activation.
Expand All @@ -88,11 +88,11 @@ Most people use Virtual Environments because it's a recommended practice when wo
1. Now verify that `python` is now linked to Python 3.

```
(py3-sphinx) $ python -V
(py3-sphinx) $ python3.7 -V
```

```
(py3-sphinx) $ Python 3.7.0
(py3-sphinx) $ Python 3.7.2
```

## Install Sphinx in the Virtual Environment
Expand Down