Below you can find a simple guide how to install all required python dependencies:
python3 -m venv venv
. venv/bin/active
pip install -U pip wheel pip-tools
pip install -r requirements.txt
mkdir -p bin/data/db
docker-compose up mongodb
cd uaber-api
uvicorn main:app --reload
docker-compose up --build