Pre-requisites
This application works with python version 3.10, make sure it is installed or use the following command to install it:
$sudo apt update
$sudo apt install python3
Install pip3:
$sudo apt install pip3
Then, install Pipenv. Pipenv is a tool that provides all necessary means to create a virtual environment for a Python project. It automatically manages project packages through the Pipfile file as packages are installed or uninstalled:
$pip3 install pipenv