Installation
Dependencies
See environment.yml .
Recommended installation instructions
Install Anaconda or Miniconda
Get the code from gitlab
git clone https://gitlab.com/fgi_nls/public/EODIE.gitCreate conda environment from environment.yml
conda env create -f environment.ymlActivate conda environment eodie
conda activate eodieMove into EODIE directory
cd EODIE/src/eodie
Good to go!
Installation verification
After activating the environment, you can verify that the installation succeeded by typing:
python --versionpython -c 'import numpy, shapely, rasterio, fiona, yaml'python -c 'from osgeo import gdal'
In the first case, if the python version is displayed, the verification was successfull.
The other calls are successfull if no output is displayed.
In case of a ModuleNotFoundError, use conda install -c conda-forge modulename to install the missing module.
You can further verify the installation and learn about the usage of EODIE as command line tool in Examples .