We recommend using anaconda
to handle python
dependencies behind the scenes. With anaconda
installed, simply create an environment with the necessary python
modules based on the environment.yml
file with:
conda env create -f environment.yml
The newly created conda environment pyradsmip
can be activated with:
source activate pyradsmip
The correlated-k code RRTMG is wrapped in Python via climlab
. climlab
is included in the conda environment file environment.yml
.
The line-by-line module PyRADS needs to be installed manually (see github page) and the path to import it into pyradsmip
has to be updated in pyradsmip/__init__.py
.
Project based on the cookiecutter science project template.