From e87dbd9e65bbf651d7cfa4b17ef3a738d4d8e082 Mon Sep 17 00:00:00 2001 From: Joy A Date: Mon, 7 Oct 2024 16:49:27 +0100 Subject: [PATCH] Added import commands in ReadMe file, necessary for project installation --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index edb540d0..d1be9e69 100644 --- a/README.md +++ b/README.md @@ -93,8 +93,17 @@ To install these, execute the following commands: 1. Clone this repository. 2. Open your command line interface change directories to the repository root directory. -3. Create a Python virtual environment and install the requirements for this - project: +3. Create a Python virtual environment + - check your python version + ``` + python --version + ``` + - if it is python 3.11, go to step 4 + - if not run this command to create a python virtual environment . Change 3.12 with your python version + ``` + pipenv --python 3.12 + ``` +4. install the requirements for this project: ``` pipenv install --dev ```