Installation (Python)
This page describes installation of the Python version of DANT.
Install with Anaconda
Anaconda is recommended for managing the pyDANT environment.
1 conda create -n pyDANT python=3.11
2 conda activate pyDANT
3 pip install pyDANT
Install from Python Package Index (PyPI)
You can also install pyDANT directly from PyPI:
1 pip install pyDANT
Install from Source
If you prefer to install from source, clone the repository and install it manually:
1 git clone https://github.com/jiumao2/pyDANT.git
2 cd pyDANT
3 pip install -e .