Quick Start: Installation

  1. If this is the first time using DSI, start by creating a DSI virtual environment with a name of your choice, e.g., mydsi:

    python -m venv mydsi
    
  2. Then activate the environment (start here if you already have a DSI virtual environment) and install the latest pip in your environment:

    source mydsi/bin/activate
    pip install --upgrade pip
    
  3. Go down into the project space root, clone the dsi repo and use pip to install dsi:

    git clone https://github.com/lanl/dsi.git
    cd dsi
    pip install .
    
  4. When you’ve completed work, deactivate the environment with:

    deactivate