Conda (Anaconda or Miniconda) must be installed.
From the root of the repository:
conda env create -f environment.yml
conda activate els-projectWith the environment active, install the src package in editable mode:
pip install -e .The -e flag installs in editable (development) mode, so any changes to the source files in src/ are reflected immediately without reinstalling.
from src import helper # or any other module in src/If environment.yml changes (e.g., after pulling new commits):
conda env update -f environment.yml --prune