Installation#
Dependencies#
The dependencies to run icclim are listed under our requirements.txt file.
Installation (Linux, OS X)#
Note
Make sure you have Python 3.9+.
To install from pip#
pip install icclim
To install from sources#
With git:
git clone git://github.com/cerfacs-globc/icclim
cd icclim
Or without git:
Go to cerfacs-globc/icclim.
you can download the last release: click to Source code (zip) or Source code (tar.gz).
Extract the file.
Go to extracted directory.
Then run the following commands:
[sudo] python setup.py install
or if you don’t have root or sudo access, as a normal user:
python setup.py install --user
Check if the library is installed correctly:
>>> import icclim
To get the version of installed library, do the following:
>>> icclim.__version__
5.0.0
Note
icclim was not tested on Windows platform…