Installation#

maxent_disaggregation is an open source Python software package. It’s available via pip and anaconda. The basic installation only comes with the sampling. To install the plotting functionality see instruction below:

Installation via pip#

  1. Install maxent_disaggregation:

pip install maxent_disaggregation
  1. If you want to run the example notebooks and have the plotting options, run:

pip install maxent_disaggregation [notebooks] 

Installation via Conda#

Option 1: Create a new Conda environment for you project#

  1. Create a new Conda environment (in this example named maxent_disaggregation):

conda create -n maxent_disaggregation -c jakobs maxent_disaggregation
  1. Activate the environment:

conda activate maxent_disaggregation
  1. If you want to run the example notebooks with the correlation plots, then run:

conda install matplotlib seaborn
pip install corner

Option 2: Install in a existing Conda environment:#

  1. Activate your_conda_environment

conda activate your_conda_environment
  1. Install maxent_disaggregation

conda install -c jakobs maxent_disaggregation
  1. If you want to run the example notebooks with the correlation plots, then run:

conda install matplotlib seaborn
pip install corner