Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 619 Bytes

File metadata and controls

30 lines (20 loc) · 619 Bytes

Installation guide

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/activate

Installing dependencies:

(.env) pip install -r requirements.txt

Setting up pre-commit hooks (optional):

(.env) pre-commit install

and everything should work after that!