Execute the below command to create virtual environment
python -m venv venv
Then active environment:
for windows:
source venv/Scripts/activate
for unix:
source venv/bin/activate
Use makefile
make install_requirements
or classic
pip install -r ./requirements.txt
Use makefile
make run_app
or classic
python main.py