Installation ============= DANSy can be installed via `pip`, `conda`, tarball, and directly from the Git repository. We recommend using conda forge to install scientific packages `conda install conda-forge` before installing DANSy. Pip ---- To install via pip, execute `pip install dansy`. Conda --------- To install via conda, execute `conda install -c naeglelab dansy`. Tarball --------- To install via a tarball, head over to the `Releases page `_ and download the latest stable tar release. Afterwards, navigate to your downloads directory and execute the following commands, substituting for the release's version number: ``` tar -xvf dansy-.tar.gz cd DANSY- python setup.py install ``` Git ---- If you want to try out the latest commit, you can install directly from the Git repository by executing the following commands: ``` git clone https://github.com/NaegleLab/DANSy cd DANSy.git python setup.py install ```