https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: 3a229035db5473b67ff4ffe72c900d94f8b9e955 authored by Klaus Zimmermann on 21 April 2022, 12:23:54 UTC
Add debugging help
Tip revision: 3a22903
environment.yml
---
name: esmvaltool
channels:
  # The release candidate channel should only be activated
  # during the rc phase right before the next release of the
  # ESMValCore.
  # - conda-forge/label/esmvalcore_rc
  - conda-forge
  - nodefaults

dependencies:
  - pip!=21.3
  - python>=3.8
  # Python packages that cannot be installed from PyPI:
  - cartopy
  - compilers
  - esmpy
  - esmvalcore
  - gdal
  - matplotlib-base
  # Non-Python dependencies
  - cdo
  - imagemagick
  - julia
  - nco
  - python-cdo
  - rasterio
  - ruamel.yaml
  - scikit-learn  # may hit hw-specific issue if from pypi https://github.com/scikit-learn/scikit-learn/issues/14485
  - xgboost

  # Multi language support:
  - ncl
  - r-base
  # R packages needed for development
  - r-docopt
  - r-git2r  # dependency of lintr
  - r-lintr
  - r-styler
  - r-yaml
  - r-udunits2  # needed by the docker build
back to top