Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added important commands in ReadMe file, necessary for project installation #825

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down