- Install Python 3.9 or greater
- Create a venv:
python -m venv venv
- Ignore it in git:
echo venv >> .git/info/exclude
- Ignore it in git:
- Load it:
source venv/bin/activate
- Upgrade pip:
python -m pip install -U pip
- Install this project:
python -m pip install -e .
- Run it with
python -m collect
or justcollect