Installation¶
approxposterior
can be installed several ways.
Using conda
conda install -c conda-forge approxposterior
Using pip
First install george
conda install -c conda-forge george
then install approxposterior
pip install approxposterior
This step requires installing george (the Python Gaussian Process package) first before installing approxposterior to ensure george is setup properly.
To upgrade:
pip install -U --no-deps approxposterior
From source
This method is preferred for those who want the “bleeding edge” version.
First install george
conda install -c conda-forge george
then install approxposterior
git clone https://github.com/dflemin3/approxposterior.git
cd approxposterior
python setup.py install