From 88123342be3987b93f925beeadec47af9d7854cf Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Thu, 10 Oct 2019 00:01:57 -0700 Subject: [PATCH] note that venv is optional --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f2b3d6..04aeae7 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,9 @@ If python 3.7 is not your default python3 version, create a virtualenv: ```bash # Check python3 version: python3 --version -# output: Python 3.7.5rc1 +# output on my system: Python 3.7.5rc1 +# If this indicates a version >= 3.7, you can skip all +# the steps involving virtualenv or referencing the venv/ directory # Create a virtual environment using python3.7 and place it in the directory `venv/` virtualenv -p python3.7 venv