Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Requirements

In order to build SNAP and the toolboxes you need the following software

Checkout the source code

...

Code Block
languagebash
cd <myprojects>
mkdir snap
 
cd snap
git clone https://github.com/senbox-org/snap-engine.git
cd snap-engine
mvn clean install
 
cd ..
git clone https://github.com/senbox-org/snap-desktop.git
cd snap-desktop
mvn clean install


Info

Some people reported they had to use sudo in front of mvn clean install. Usually it should not be necessary but in case you experience problems try sudo.

Build SNAP source code

In order to build the source code the maven install command should be invoked.

...