Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Installation

From PyPI

pip install dapi

In a Jupyter notebook

%pip install dapi --quiet

Check version

import dapi
print(dapi.__version__)

Development version

pip install git+https://github.com/DesignSafe-CI/dapi.git@dev

Or in a notebook:

%pip uninstall dapi --yes
%pip install git+https://github.com/DesignSafe-CI/dapi.git@dev --quiet

Local editable install

git clone https://github.com/DesignSafe-CI/dapi.git
cd dapi
pip install -e .

Update

pip install --upgrade dapi