From b4c7e0aff437db970aa8720a3665537ef9340efd Mon Sep 17 00:00:00 2001 From: dfrisinghelli <daniel.frisinghelli@gmail.com> Date: Thu, 20 May 2021 15:36:34 +0200 Subject: [PATCH] Conda environment for Climax project. --- environment.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 environment.yml diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..f5f474c --- /dev/null +++ b/environment.yml @@ -0,0 +1,28 @@ +# create environment +# $ conda env create -f environment.yml +# $ conda activate climax +name: climax +channels: + - conda-forge + - defaults +dependencies: + - python=3.7 + # scientific stack + - numpy + - pandas + - scipy + - scikit-learn + - statsmodels + # data I/O + - cdo + - xarray + - dask + - gdal + - rasterio + - netcdf4 + - h5py + - h5netcdf + # visualization + - matplotlib + - seaborn + - ipython -- GitLab