Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 581 Bytes

DEVELOPER.md

File metadata and controls

26 lines (21 loc) · 581 Bytes

Developer Instructions

Initial Setup

Normal virtualenv setup:

python -m venv .venv
source .venv/bin/activate
pip install --upgrade -r requirements.txt
pip install -e .

NixOS

To initialize virtualenv instead run:

nix-shell -p python3 --command "python -m venv .venv --copies"

After installing all dependencies patch the binaries with:

nix shell github:GuillaumeDesforges/fix-python
fix-python --venv .venv

Note: this may take a few minutes.

See NixOS Wiki for details.