Installation#

Official Source#

To install figanos, run these commands in your terminal:

$ mamba install -c conda-forge gdal
$ python -m pip install figanos

Development Installation (conda + pip)#

For development purposes, we provide the means for generating a conda environment with the latest dependencies in an environment.yml file at the top-level of the Github repo.

In order to get started, first clone the repo locally:

$ git clone git@github.com:Ouranosinc/figanos.git

Then you can create the environment and install the package:

$ cd figanos
$ conda env create -f environment-dev.yml

Finally, perform an –symlink install of figanos:

$ flit install --symlink
# Or
$ make dev