-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
We recommend using Conda to install STIM. If you don't have Conda installed, please follow the instructions here. Once Conda is installed, you can install STIM from conda-forge by running:
conda install -c conda-forge stimBuilding STIM from source requires maven and OpenJDK8 (or newer). On Ubuntu, you can install them via the default package manager:
sudo apt-get install openjdk-8-jdk mavenNext, please check out this repository and go into the folder
git clone https://github.com/PreibischLab/stim.git
cd stim
The recommended way is to just call the install script without any arguments to install STIM into the checked out directory:
./installTo install into your favorite local binary $PATH (e.g., $HOME/bin) you can call:
./install $HOME/binAll dependencies will be downloaded and managed by maven automatically. For linux-based platforms other than Ubuntu (including Mac), the process should be very similar.
This currently installs several tools: st-resave, st-add-slice, st-normalize, st-explorer, st-render, st-bdv-view, st-add-annotations, st-align-pairs, st-align-pairs-view, st-align-global.
The process should finish with a message similar to this (here we only called ./install thus installing in the code directory):
Installing 'st-explorer' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-render' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-bdv-view' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-resave' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-add-slice' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-normalize' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-add-annotations' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-align-pairs' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-align-pairs-view' command into /Users/spreibi/Downloads/stim_test/stim
Installing 'st-align-global' command into /Users/spreibi/Downloads/stim_test/stim
Installation directory equals current directory, we are done.
Installation finished.The installation should take around 1 minute.
Building STIM from source requires maven and OpenJDK8 (or newer). On Windows, we recommend to install them via conda:
conda install -c conda-forge maven openjdkNext, please check out this repository and go into the folder
git clone https://github.com/PreibischLab/stim.git
cd stim
The recommended way is to just call the install script without any arguments to install STIM into the checked out directory:
install_windows.batTo install into your favorite local binary %PATH% (e.g., %HOME%\bin) you can call:
install_windows.bat %HOME%\binFrom this point on, the process is the same as on Ubuntu / Linux.