Installation
Stable release
SLURP is deployed on Pypi. To install slurp, please create a python 3.10 virtual environment :
$ python3.10 -m venv slurp_env
$ pip install slurp-masks
This is the preferred method to install slurp, as it will always install the most recent stable release.
Warning
Depending on which computation you want to perform (cf. Use cases page), you may need to install OTB on your system as an additional dependencies. Please refer to the OTB installation guide provided here for more details.
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources
The sources for SLURP can be downloaded from the Github repo.
You can either clone the public repository:
# To update with real URL
$ git clone git://github.com/CNES/slurp
Or download the tarball:
# To update with real URL
$ curl -OJL https://github.com/CNES/slurp/tarball/master
Once you have a copy of the source, you can install it in a virtualenv with:
$ make install
$ source venv/bin/activate