#!/bin/bash #use with source ./develop.env # see: https://setuptools.pypa.io/en/latest/userguide/development_mode.html set -e # Create a virtual environment python -m venv .venv # Activate the python virtual environment source .venv/bin/activate # Install the package in editable mode (dynamic use of files) pip install --editable .