https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: b07a0ce1fa277e8686a50c02098b08c6a36943bf authored by Manuel Schlund on 13 April 2022, 09:30:39 UTC
Merge remote-tracking branch 'public/main' into icon_eval
Tip revision: b07a0ce
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