First, install Python 3.x.
Set up a virtual environment using the following command:
python -m venv venvThen, activate the virtual environment.
On windows:
.\venv\Scripts\activateOn macOS and Linux:
source env/bin/activateIf you want to switch projects or otherwise leave your virtual environment, simply run:
deactivateProject is built using Python web framework - Flask.
Flask and all the other dependency modules can be installed from the commandline using pip manager:
pip install -r dev-requirements.txtRun the following command:
flask run