From 2289d41d3a1a5394cfeb19ae9e049c4615a7d743 Mon Sep 17 00:00:00 2001 From: Viviana Monsalve Date: Fri, 25 Feb 2022 16:02:54 -0500 Subject: [PATCH] Readme updated --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f56e7c..d75f64f 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,18 @@ From terminal: cd your/local/project/directory -#once in the project folder create a virtual environment. -This step has to be done just once, the first time: +#once in the project folder create a virtual environment. +This step has to be done just once, the first time python3 -m venv venv -#activate the virtual environment +#activate the virtual environment. +Do this every time you work on the project source venv/bin/activate #install the required dependencies +This step has to be done only once after creating a new virtual environment pip install -r requirements.txt