From 9b83a033c6de6d6f0221b4373136694f53c9b0e0 Mon Sep 17 00:00:00 2001 From: yuxiaoy Date: Thu, 13 May 2021 00:18:44 +0800 Subject: [PATCH] Update env to venv for consistency --- CONTRIBUTING.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 1ae1b72a..11e6b103 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -102,15 +102,15 @@ First time setup .. code-block:: text - $ python3 -m venv env - $ . env/bin/activate + $ python3 -m venv venv + $ . venv/bin/activate .. group-tab:: Windows .. code-block:: text - > py -3 -m venv env - > env\Scripts\activate + > py -3 -m venv venv + > venv\Scripts\activate - Install the development dependencies, then install Flask in editable mode.