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#
Install maxent_disaggregation:
pip install maxent_disaggregation
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#
Create a new Conda environment (in this example named
maxent_disaggregation):
conda create -n maxent_disaggregation -c jakobs maxent_disaggregation
Activate the environment:
conda activate maxent_disaggregation
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:#
Activate
your_conda_environment
conda activate your_conda_environment
Install maxent_disaggregation
conda install -c jakobs maxent_disaggregation
If you want to run the example notebooks with the correlation plots, then run:
conda install matplotlib seaborn
pip install corner