Difference between revisions of "How To Build Micro Manager From Source On Ubuntu 13.10"
Line 12: | Line 12: | ||
# autoconf automake libtool pkg-config \ | # autoconf automake libtool pkg-config \ | ||
# libboost1.54-all-dev zlib1g-dev swig \ | # libboost1.54-all-dev zlib1g-dev swig \ | ||
− | # openjdk-7-jdk python-dev python-numpy-dev | + | # openjdk-7-jdk ant python-dev python-numpy-dev |
mkdir mm/ | mkdir mm/ | ||
Line 34: | Line 34: | ||
./configure --prefix=$MM_DIR/ImageJ --enable-imagej-plugin=$MM_DIR/ImageJ --with-python | ./configure --prefix=$MM_DIR/ImageJ --enable-imagej-plugin=$MM_DIR/ImageJ --with-python | ||
+ | |||
+ | # Download build dependencies | ||
+ | make fetchdeps # Required since SVN r14001-r14016 | ||
# Build binaries (can take a while) | # Build binaries (can take a while) |
Latest revision as of 10:01, 1 August 2014
Note
This page has been updated to reflect the build system changes of r13120 and r13223, but the updated script has not been tested. Ask on the mailing list if you run into issues.
Here is a small script I use to build MM on Linux to be able to test new features and develop plugins with DemoAdaptaters. I can provide help to adapt build system to your Linux. Contact me on the MM mailing list: https://micro-manager.org/wiki/Micro-Manager_Community.
Command Line
# Instal dependencies # Here you have debian packages you can install with sudo apt-get install # Find equivalent packages for others distributions: # # subversion build-essential \ # autoconf automake libtool pkg-config \ # libboost1.54-all-dev zlib1g-dev swig \ # openjdk-7-jdk ant python-dev python-numpy-dev mkdir mm/ cd mm/ # Save directory path MM_DIR=$(pwd) # Get ImageJ (use it even if you already have another copy of ImageJ or Fiji) wget http://imagej.nih.gov/ij/download/zips/ij148.zip unzip ij148.zip # Retrieve MM source code (can be long) svn co https://valelab.ucsf.edu/svn/micromanager2/trunk micro-manager svn co https://valelab.ucsf.edu/svn/3rdpartypublic # Build MM cd micro-manager/ ./autogen.sh ./configure --prefix=$MM_DIR/ImageJ --enable-imagej-plugin=$MM_DIR/ImageJ --with-python # Download build dependencies make fetchdeps # Required since SVN r14001-r14016 # Build binaries (can take a while) make # Install MM as ImageJ plugin make install # Run MM # $MM_DIR/mmimagej