Installation
Using Anaconda or Miniconda (recommended)
Using conda (latest version recommended), S2 Downloader API is installed as follows:
Create virtual environment for s2_downloader_api (optional but recommended):
$ conda create -c conda-forge --name s2_downloader_api python=3 $ conda activate s2_downloader_api
Then clone the S2 Downloader API source code and install S2 Downloader API and all dependencies from the environment_s2_downloader_api.yml file:
$ git clone git@git.gfz-potsdam.de:fernlab/products/data-portal/s2_downloader_api.git $ cd s2_downloader_api $ conda env update -n s2_downloader_api -f tests/CI_docker/context/environment_s2_downloader_api.yml $ pip install .
This is the preferred method to install S2 Downloader API, as it always installs the most recent stable release and automatically resolves all the dependencies.
Using pip (not recommended)
It is also possible to instal S2 Downloader API via pip. However, please note that S2 Downloader API depends on some open source packages that may cause problems when installed with pip. Therefore, we strongly recommend to resolve the following dependencies before the pip installer is run:
TODO
Then, the pip installer can be run by:
$ pip install git@git.gfz-potsdam.de:fernlab/products/data-portal/s2_downloader_api.git
If you don’t have pip installed, this Python installation guide can guide you through the process.
Note
S2 Downloader API has been tested with Python 3.6+., i.e., should be fully compatible to all Python versions from 3.6 onwards.