Installation

Prerequisites

destvi_utils can be installed via PyPI.

conda prerequisites

  1. Install Conda. We typically use the Miniconda Python distribution. Use Python version >=3.7.

  2. Create a new conda environment:

    conda create -n destvi-env python=3.7
    
  3. Activate your environment:

    source activate destvi-env
    

pip prerequisites:

  1. Install Python, we prefer the pyenv version management system, along with pyenv-virtualenv.

destvi_utils installation

Install destvi_utils in one of the following ways:

Through pip:

pip install git+https://github.com/yoseflab/destvi_utils.git

Nightly version - clone this repo and run:

pip install .

For development - clone this repo and run:

pip install -e .[dev,docs]