Installation

There are 4 methods of installation available (choose one):

Through the conda package manager (Anaconda Cloud)

# first, add the conda-forge channel to your conda build
conda config --add channels conda-forge

# now bamnostic is available for install
conda install bamnostic

Through the Python Package Index (PyPI)

pip install bamnostic

# or, if you don't have superuser access
pip install --user bamnostic

Through pip+Github

# again, use --user if you don't have superuser access
pip install -e git+https://github.com/betteridiot/bamnostic.git

# or, if you don't have superuser access
pip install --user -e git+https://github.com/betteridiot/bamnostic.git

Traditional GitHub clone

git clone https://github.com/betteridiot/bamnostic.git
cd bamnostic
pip install -e .

# or, if you don't have superuser access
pip install --user -e .