Menu

Installation

Vincent Favre-Nicolin

Nota bene: so far NanoMAD has only been tested under linux, but the installation should work on any posix OS, with gcc, g++, git and wget.

The easiest way to install NanoMAD is to get the latest version from the git repository, and compile it (necessary libraries will be downloaded automatically). For this you will only need standard c++ development tools (fcc/g++), as well as git and wget (to download support files):

git clone https://vincefn@git.code.sf.net/p/nanomad/git nanomad
cd nanomad
make getdeplibs  # This will download the necessary libraries from the Fox/ObjCryst project
make -j5 # Use -j3 if you have 2 cores, -j5 if you have 4, etc...

To install nanomad in /usr/local/bin/, use:

install -m 755 nanomad /usr/local/bin

Related

Wiki: Main_Page