From 90740267480e1b40e32480cb35a6a92ace7c4845 Mon Sep 17 00:00:00 2001 From: Anne Gentle Date: Mon, 15 Apr 2019 11:54:36 -0500 Subject: [PATCH 1/2] Fix a typo in the Python tutorial for 3.7 version value in virtualenv --- _learn/01-sphinx-python-rtd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_learn/01-sphinx-python-rtd.md b/_learn/01-sphinx-python-rtd.md index 22d8249d..8f9dc8ee 100644 --- a/_learn/01-sphinx-python-rtd.md +++ b/_learn/01-sphinx-python-rtd.md @@ -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. From f10c37d1cc2fd487856bfd86f2a3e21f0d6d303c Mon Sep 17 00:00:00 2001 From: Anne Gentle Date: Mon, 15 Apr 2019 11:57:06 -0500 Subject: [PATCH 2/2] Found one more --- _learn/01-sphinx-python-rtd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_learn/01-sphinx-python-rtd.md b/_learn/01-sphinx-python-rtd.md index 8f9dc8ee..853e15e8 100644 --- a/_learn/01-sphinx-python-rtd.md +++ b/_learn/01-sphinx-python-rtd.md @@ -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