https://github.com/ESMValGroup/ESMValTool
Raw File
Tip revision: e60b8a719c2d6041c23e4e19b6605f505a6d1cc3 authored by Valeriu Predoi on 26 October 2020, 12:42:01 UTC
Update changelog for release 2.1 (#1886)
Tip revision: e60b8a7
environment.yml
---
name: esmvaltool
channels:
  - conda-forge
  - esmvalgroup

dependencies:
  # Python packages that cannot be installed from PyPI:
  - gdal
  - esmpy
  - esmvalcore>=2.1.0,<2.2
  - iris>=2.2.1,<3
  # Non-Python dependencies
  - cdo>=1.9.7
  - eccodes!=2.19.0  # cdo dependency; something messed up with libeccodes.so
  - imagemagick
  - nco
  - pynio
  - scikit-learn  # may hit hw-specific issue if from pypi https://github.com/scikit-learn/scikit-learn/issues/14485

  # Multi language support:
  - ncl>=6.5.0  # this should always install 6.6.0 though
  - r-base>=3.5
  - r-curl  # Dependency of lintr, but fails to compile because it cannot find libcurl installed from conda.
  - r-udunits2  # Fails to compile because it cannot find udunits2 installed from conda.
back to top