Pre-requisites:
- Windows users will need to have VCC14 or higher. Get it at the microsoft page
- Make sure to have python 3.11 or higher already installed
Setting up the environment:
# Creating the virtual environment
python3 -m venv .venv
# Activating the virtual environment
source .env/bin/activateInstalling dependencies:
(.env) pip install -r requirements.txtSetting up pre-commit hooks (optional):
(.env) pre-commit installand everything should work after that!