Compiling EMAN2 on Linux System FROM SOURCE

IMPORTANT: It is still possible to compile EMAN2 "the old way", but if you wish access to some of the new capabilities, you will need to have SciPy and Theano installed in your Python Environment. We are shifting towards an Anaconda-based build strategy similar to the new Binary distribution. We will post those instructions soon.

Linux Distribution-specific comments

Arch Linux

Arch is an extremely flexible Linux variant, which doesn't have release versions, but instead updates packages continuously over time. It is not for newbies, but for experts, it is an excellent choice.

Arch now uses Python3 by default rather than Python2. All of the EMAN scripts look for 'python'. So you need to arrange that in your account 'python' launches Python2 (by making a link, etc).

Install dependencies:

pacman -S python2-numpy hdf5 fftw boost libtiff libpng cmake gsl ftgl python2-matplotlib ipython qt4 python2-pyqt4 python2-opengl

Ubuntu and Kubuntu

This is one of the best EMAN2 development platforms, and what I use now, though I use Kubuntu due to its improved desktop and Qt integration (Gnome has become irritating recently). One of the best things about this distribution is that ALL of the dependencies are available from the package manager. However, with recent ubuntu releases, I suggest installing 'synaptic' and using that in preference to the current default package managers, which don't find development packages very readily. It is possible that we've missed something in the list of dependencies below, so please let us know if something is still broken.

15.04 (Kubuntu)

Run the following command, which uses the apt-get package manager: sudo apt-get -yq install libhdf5-serial-dev libpng12-0 libpng12-dev libtiff5 libtiff5-dev python-qt4 python-qt4-gl python-opengl python-matplotlib libfftw3-3 libfftw3-dev libgsl0-dev db-util libdb-dev python-bsddb3 libboost-all-dev python-dev cmake cmake-curses-gui ipython libgl1-mesa-dev libglu1-mesa-dev libftgl2 libftgl-dev

13.04 - 14.04

Install the following (you can just use apt-get install): libhdf5-7 libhdf5-dev libpng12-0 libpng12-dev libtiff4 libtiff4-dev python-qt4 python-qt4-gl python-opengl python-matplotlib libfftw3-3 libfftw3-dev libgsl0-dev db-util libdb-dev python-bsddb3 libboost-all-dev python-dev cmake cmake-curses-gui ipython libgl1-mesa-dev libglu1-mesa-dev libftgl2 libftgl-dev

12.10 and earlier

The version numbers in this list are a bit out of date, so you will need to search for the current version of each package. You will need:

libhdf5-serial libhdf5-serial-dev libpng12 libpng12-dev libjpeg62 libjpeg62-dev libtiff4 libtiff4-dev python-qt4 python-qt4-gl python-opengl python-matplotlib libfftw3 libfftw3-dev libgsl0-dev db4.8-util libdb4.8 python-bsddb3 libboost-python1.40-dev python-dev cmake cmake-curses-gui ipython libgl1-mesa-dev libglu1-mesa-dev libftgl2 libftgl-dev

You may also need the following (but they may already be installed):

freeglut3 libgl1-mesa-dri libgl-mesa-glx libglu1-mesa libqt4-opengl mesa-common-dev

Assuming you have an Nvidia based graphics card (you should):

nvidia-current nvidia-settings

Note that Python MUST be 2.X not 3.X. While you can install packages from the command-line with apt-get, it may be more difficult to find the right version numbers that way.

Mandriva 2009.0 - 2010.0

Unfortunately, a lot of problems, all due to Mandriva using broken versions of various dependencies. Mandriva used to be my platform of choice, but many issues, such as the OpenGL support in PyQt4 being broken, have lead me to stop using this distro. It is possible to make it work by recompiling your own version of many dependencies, but it is a very painful process.

Fedora

All dependent packages can be installed in Fedora system with its package manage system, yum. This is the list of dependent packages I installed for Fedora 14 x86_64 for the default ccmake configuration. What you need install may vary depends on how may libraries pre-exists on you system. There are the compile-time dependent packages. Note that EMAN2.1 requires Python 2.7.x, so if your default system python is older than this, you will need to install a newer python in /usr/local or somesuch, and install the necessary dependencies there as well. For most people, it might be easier to simply bite the bullet and update your OS to something newer.

After compiling and installing EMAN2, we need install some run time dependent packages for EMAN2's GUI part.

CentOS 6

On CentOS system, by default you can find all dependency libraries with yum. You need install EPEL(Extra Packages for Enterprise Linux) first. Follow the instruction on this webpage (http://fedoraproject.org/wiki/EPEL/FAQ#howtouse) to install epel. Then you can do the same thing as in Fedora system to install all dependent packages.

CentOS 7

This was contributed by Jesper Karlsen, who needed to get EMAN2/SPARX working on a cluster with MPI support (updated by Steve to fix some errors )

WARNING - While CentOS 7 is a nice, stable OS, normal releases use GCC4, rather than the newer GCC5. This will reduce performace by 30-40% for EMAN2 and similar programs! Unless you have a hack to get GCC5 working on CentOS, I suggest a different distribution

Most of the dependencies can be installed through yum, if the EPEL repository is installed:

and then run:

sudo yum install gsl gsl-devel mesa-libGLU mesa-libGLU-devel ftgl-devel ftgl freetype freetype-devel boost-devel boost-openmpi-devel boost-python PyQt4 PyQt4-devel sip sip-devel  numpy scipy hdf5-devel h5py hdf5 libtiff libtiff-devel libpng libjpeg-turbo-devel  python-devel freeglut python-matplotlib fftw-libs.x86_64 fftw-libs-double.x86_64 fftw-libs-single.x86_64 fftw-devel.x86_64 python-ipython.noarch python-ipython-console.noarch PyOpenGL.noarch

I needed to get EMAN2 and sparx to run with MPI on our cluster and realized that the OpenMPI from the CentOS did not work, as it needed to be configured with the "--disable-dlopen" to work with EMAN2, which is mentioned in the wiki:

http://blake.bcm.edu/emanwiki/EMAN2/Parallel/PyDusa

The "install_mpi.py --force" option that installs the MPI support for EMAN2/Sparx and a customized version of OpenMPI, was not an option for me. I needed OpenMPI as an RPM, since I have many other program from repository that depends on the OpenMPI package. The Best way i my perspective was to get the latest src.rpm from OpenMPI and rebuild it with the correct flags:

rpmbuild --rebuild --define 'configure_options --disable-dlopen' openmpi-1.8.4-1.src.rpm

This rebuilds a RPM into e.g. ~/rpmbuild/RPMS/x86_64/ if you have a 64bit machine. Install the RPM

sudo rpm -ivh --force  ~/rpmbuild/RPMS/x86_64/openmpi-1.8.4-1.x86_64.rpm

Before you go a head and try to compile the PyDusa program, you need to apply the attached patch to the config file. In CentOS 7.0 Python modules are spread in /usr/lib/python2.7 and /usr/lib64/python2.7. The patch adds the right path for NUMPY to CentOS 7.0. For this reason it is also a good idea to add /usr/lib64/python2.7 to your PYTHONPATH.

Now compile and install EMAN2 as described at:

http://blake.bcm.edu/emanwiki/EMAN2/COMPILE_EMAN2_LINUX

Add the EMAN2 environments to your upstart script in e.g. /etc/profile.d/eman2.sh, Containing something like this:

export EMAN2DIR=/usr/local/EMAN2.1
export PATH=${EMAN2DIR}/bin:$PATH
export PYTHONPATH=${EMAN2DIR}/lib:${EMAN2DIR}/bin:${PYTHONPATH}
export LD_LIBRARY_PATH=${EMAN2DIR}/lib:$LD_LIBRARY_PATH
alias sparx=sx.py

Log out/in or run "source /etc/profile.d/eman2.sh"

Now you can add the EMAN2/Sparx MPI support by following the description here:

http://blake.bcm.edu/emanwiki/EMAN2/Parallel/PyDusa

Hopefully you should have a fully functioning EMAN2/Sparx installation with MPI support by now.

This method gives a very clean environment. Where you do not have contamination of "foreign" environment and library files, which could give you a lot of grief.

Required Libraries / Programs

If you wish to install dependencies from source within your own account or somesuch (no system administrator privileges on the cluster), you will need the following dependencies:

fftw

(version 3.x) (http://www.fftw.org/) To install fftw from source use either configure option:

gsl

(version 1.3+) (http://www.gnu.org/software/gsl/)

Python 2.7.x

If you type 'python' and the version shows anything other than 2.7.X, you will need to download and install a recent Python 2.7 release from www.python.org. Make sure that this python is before any other python in your path.

easy_install or pip

Suggest using pip, which is included with Python 2.7.9. If you already have pip or easy_install available with your Python 2.7.x distribution, then you can skip this step. Otherwise, see:

https://pip.pypa.io/en/latest/installing.html

Numpy

Try

python
import numpy

If this doesn't raise any errors, then you already have Numpy installed. If it does, try:

pip install numpy
-or-
easy_install numpy

ipython

This is required for the interactive 'e2.py' python interface. Many users will not use this, but it isn't bad to have installed.

pip install ipython

Boost

(version 1.32+) (http://www.boost.org)

Replace /usr/local with your desired target path :

bash bootstrap.sh --prefix=/usr/local
./b2 install --prefix=/usr/local

CMake

(version 2.0.6+) (http://www.cmake.org) Executables for several platforms are available; source code can also be used for custom installations.

hdf5

Download the source code file hdf5-1.8.7.tar.gz from http://www.hdfgroup.org/ftp/HDF5/current/src/

Optional Libraries / Programs

Quick Installation

This is **STILL** part of installation "from source"

Once all the dependencies are installed, you can install the source code using cmake. Suppose you have source code eman2.source.tar.gz:

  1. % cd $home/username/
    % tar -zxvf eman2.source.tar.gz
  2. % cd EMAN2/src/build
  3. % cmake ../eman2
    % make
    % make install
  4. Set up login shell for csh/tcsh, put the following to your .cshrc or .tcshrc file:
    setenv EMAN2DIR $home/username/EMAN2
    setenv PATH $EMAN2DIR/bin:${PATH}
    setenv LD_LIBRARY_PATH $EMAN2DIR/lib:${LD_LIBRARY_PATH}
    setenv PYTHONPATH $EMAN2DIR/lib:${PYTHONPATH}
    For bash in .bashrc add:
    export EMAN2DIR=/home/username/EMAN2
    export PATH=$PATH:$EMAN2DIR/bin
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$EMAN2DIR/lib
    export PYTHONPATH=$PYTHONPATH:$EMAN2DIR/lib

Advanced Installation

If your libraries (fftw, gsl, hdf, etc) are not found by Quick Installation, or if you want to change the compilation options, the following steps help:

  1. Follow the first 2 steps in Quick Installation.
  2. If your libraries are not installed at the default places, set up the related environment variables:
    • fftw -> FFTWDIR

    • gsl -> GSLDIR

    • tiff -> TIFFDIR

    • png -> PNGDIR

    • hdf5 -> HDF5DIR

    • python -> PYTHON_ROOT and PYTHON_VERSION

  3. % ccmake ../eman2
  4. Type 'c' if it asks about "CMAKE_BACKWARDS_COMPATIBILITY".
  5. Make necessary changes for compilation flags.
    • Developers will probably want to set BOOST-LIBRARY to a Boost.Python object file (ex. libboost_python-gcc-1_32.so)
  6. Then type 'c', and type 'g'.
  7. % make
    % make install

Platform Dependent Optimization

In CMake Configuration, enable the following option for your platform:

How to Generate Latest Documentation

  1. Install doxygen (version 1.4.3+, http://www.doxygen.org)

  2. Install graphviz (http://www.graphviz.org/)

  3. install latex (http://www.latex-project.org/)

  4. After you have a successful EMAN2 install, i.e., you can import EMAN2 in Python,
    cd EMAN2/src/build
    ccmake ../eman2
    set ENABLE_AUTODOC to ON,
    make
    make install
    All documents will be in your EMAN2/doc directory.

Notes For Developers

  1. For Emacs users, please add the following line to your $HOME/.emacs:
    (setq default-tab-width 4)
  2. Ensure the Boost.Python
  3. Windows Installer:

    EMAN uses "Nullsoft Scriptable Install System" (http://nsis.sourceforge.net/) to generate the windows installer. It also uses "HM NIS Edit" (http://hmne.sourceforge.net/) as the editor.

Appendix A

A.1. How to Install Boost Python

  1. Download 'bjam' for your platform.
  2. Download boost source from http://www.boost.org. Assume the version is boost_1_32_0.

    % cd /usr/local/src; tar zxf boost_1_32_0.tar.gz; cd boost_1_32_0.
  3. Set up environment variables "PYTHON_ROOT" and "PYTHON_VERSION". For example, if your python is at /usr/bin/python then PYTHON_ROOT is "/usr". If your python version is 2.2.X, PYTHON_VERSION is '2.2'.
    • a) Check your shell:
      % echo $SHELL
      b) If you are using bash/zsh, do
      % export PYTHON_VERSION=2.2
      % export PYTHON_ROOT=/usr
      If you are using csh/tcsh, do
      % setenv PYTHON_VERSION 2.2
      % setenv PYTHON_ROOT /usr
  4. cd libs/python/build [didn't do this]

  5. Run 'bjam' with your options: a) linux-x86: % bjam b) SGI Irix: % bjam "-sTOOLS=mipspro" c) Mac OS X: % bjam "-sTOOLS=darwin"
  6. Login as root
  7. cp -df bin-stage/libboost_python.so* /usr/local/lib
    cd ../../..; cp -rf boost /usr/local/include

A.2. How to use your own python version

If the python you want to use in your computer is not found by CMake, you may set up environment variables "PYTHON_ROOT" and "PYTHON_VERSION". For example, if your python is at /usr/local/python2.4/bin/python. PYTHON_ROOT is "/usr/local/python2.4". if your python is 2.4.X, PYTHON_VERSION is '2.4'.

A.3. How to Install numpy

From the website http://sourceforge.net/projects/numpy download source package.

For windows, run the binary installer and the installation is complete. Other users must download the source code and install manually as follows:

A.4. How to Install bsddb3 (instead of using bsddb come with Python)

Download non-encryption version of Berkeley DB (for example, db-5.1.25.NC.tar.gz) from oracle (http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html).

Download Python bsddb binding (for example, bsddb3-5.1.2.tar.gz) from http://www.jcea.es/programacion/pybsddb.htm

EMAN2/COMPILE_EMAN2_LINUX (last edited 2017-06-10 01:38:42 by jgalaz)