Update env to venv for consistency

This commit is contained in:
yuxiaoy 2021-05-13 00:18:44 +08:00 committed by GitHub
parent d575de5159
commit 9b83a033c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.