From a7965e84af72a8b8e9c5206816784aa49989637a Mon Sep 17 00:00:00 2001 From: Grey Li Date: Fri, 21 May 2021 11:07:26 +0800 Subject: [PATCH] Simplify the command to upgrade pip --- CONTRIBUTING.rst | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 04d11f7a..3a9177a4 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -112,21 +112,11 @@ First time setup > py -3 -m venv env > env\Scripts\activate -- Update pip and setuptools. +- Upgrade pip and setuptools. - .. tabs:: + .. code-block:: text - .. group-tab:: Linux/macOS - - .. code-block:: text - - $ python3 -m pip install --upgrade pip setuptools - - .. group-tab:: Windows - - .. code-block:: text - - > py -3 -m pip install --upgrade pip setuptools + $ python -m pip install --upgrade pip setuptools - Install the development dependencies, then install Flask in editable mode.