Installation#
Note
Make sure you have Python 3.10+.
Installation (Linux, OS X)#
To install from conda-forge (recommended)#
The easiest way to install icclim is via conda-forge, which also installs all dependencies automatically:
conda install -c conda-forge icclim
Or, if you are using mamba:
mamba install -c conda-forge icclim
To install from pip#
pip install icclim
To install from sources#
With git:
git clone https://github.com/cerfacs-globc/icclim.gitcd icclimpip install .
Or without git:
Go to cerfacs-globc/icclim.
Download the last release: click Source code (zip) or Source code (tar.gz).
Extract the archive and go to the extracted directory.
pip install .
Check the installation#
import icclim
print(icclim.__version__)
Note
icclim was not tested on Windows platform.