For using this application, it needs to have its own virtual environment to have all of its dependencies.
python3 -m venv ./venv
The virtual environment will also need to be activated for the application to be able to inject all of its dependencies.
source ./venv/bin/activate
pip install -r requirements.txt