Installation#

Stable release#

Installing coloc_sat, can be done with conda, mamba and pip:

Using pip#

xsar is a dependency of coloc_sat that depends on GDAL. To avoid conflicts during the installation of coloc_sat, gdal must be installed beforehand using conda.

Run this command in your terminal:

$ conda install -c conda-forge gdal
$ pip install coloc-sat

This is the preferred method to install sar_coloc, as it will always install the most recent stable release.

If you don’t have pip installed, this Python installation guide can guide you through the process.

Using conda#

Run this command in your terminal:

$ conda install -c conda-forge coloc_sat

Using mamba#

Run this command in your terminal:

$ mamba install -c conda-forge coloc_sat

From sources#

The sources for sar_coloc can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git://github.com/umr-lops/coloc_sat

Or download the tarball:

$ curl -OJL https://github.com/umr-lops/coloc_sat/tarball/master

Once you have a copy of the source, you can install it with:

$ python setup.py install