create a virtual environment:
python -m venv ./.venv
active the virtual environment:
source ./.venv/bin/activate
We use Poetry to manage dependencies, you can install it by:
python -m pip install poetry
And then install dependencies:
poetry install
pre-commit install