Setting up the development environment
Install Python 3.11 (other versions may work, but this is the one I’m using).
(optional) Create a virtual environment by running:
python -m venv venvand activate it by running:In Windows:
venv\Scripts\activateIn Linux:
source venv/bin/activateRemember to point your IDE to the python interpreter in the virtual environment.
Install the required packages by running:
pip install -r requirements.txt
Install the required development packages by running:
pip install -r requirements-dev.txt