Skip to content

cmelab/cmeutils

Repository files navigation

CME Lab Utilies

build pytest codecov Anaconda-Server Badge

Helpful functions used by the CME Lab.

Installation

Installation of CME Lab Utilities requires a conda package manager. We recommend Miniconda.

Installing from conda-forge:

  1. Create a new conda environment and install cmeutils.
    conda create -n cmeutils -c conda-forge cmeutils
    conda activate cmeutils
    

Installing from source (for development):

  1. Clone this repository:
    git clone git@github.com:cmelab/cmeutils.git
    cd cmeutils
    
  2. Set up and activate environment:
    conda env create -f environment.yml
    conda activate cmeutils
    
  3. Install from source with pip:
    pip install -e .