From acdcd6e7314f2abbf0631be84b363422019b21c5 Mon Sep 17 00:00:00 2001 From: DAVID ERIVONA Date: Thu, 2 Mar 2023 22:07:19 +0100 Subject: [PATCH] Edited readme installation of flask to Windows and Mac OS's --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index a080f644..ee82b7fa 100644 --- a/README.rst +++ b/README.rst @@ -30,12 +30,14 @@ Newer versions of libraries for one project can break compatibility in another p MacOS: .. code-block:: text + mkdir myproject $ cd myproject $ python3 -m venv venv Windows: .. code-block:: text + > mkdir myproject > cd myproject > py -3 -m venv venv @@ -43,10 +45,12 @@ Windows: Activate virtual environments MacOS: .. code-block:: text + $ . venv/bin/activate Windows: .. code-block:: text + > venv\Scripts\activate