If you don't have virtualenv installed:
python3 -m pip install virtualenv
Create virtual environment (from project root):
python3 -m virtualenv .venv
Activate the virtual environment:
source .venv/bin/activate
pip install -r requirements.txt
pip install -e .
With the virtual env active:
python src/main.py