Installation#
Requirements#
Python 3.9+
Library
GUI
PyPi Instalation#
The recommended method for installing RasterForge is via pip, the Python package manager. Simply run the following command:
pip install raster-forge
This will download and install the latest version of Raster Forge. If you intend to utilize the graphic user interface (GUI) component of Raster Forge, ensure that the GUI dependencies are installed using the following command instead:
pip install raster-forge[gui]
Source Instalation#
If you prefer to install RasterForge from source, you can clone the repository from GitHub and install it manually:
cd raster-forge
pip install .
Similarly, to install the GUI component, the dependency needs to be indicated on installation:
cd raster-forge
pip install .[gui]