Installation¶
Install As A Normal Package¶
If you just want to use pysatgeo in a project, and not develop the repo
itself, install it from PyPI:
1 | |
That installs the latest published version like any other Python dependency.
Install In A Geospatial Conda Environment¶
If you are on Windows or want the safest setup for GDAL-based libraries, create the environment first and then install the published package into it:
1 2 3 4 | |
This is still a normal package install. The only difference is that the underlying geospatial dependencies come from Conda.
Install The Latest Unreleased GitHub Version¶
If you want the current GitHub code without cloning the repo locally:
1 | |
Install From Source For Development¶
Only use this if you are working on the repository itself and want local edits to affect the installed package:
1 2 3 4 | |
Development Extras¶
To build docs, run checks, or work on the package locally:
1 | |