Difference between revisions of "Compiling on Linux and Mac OS X"

From Avogadro - Free cross-platform molecule editor
Jump to: navigation, search
Line 4: Line 4:
  
 
Developers may want to use the instructions found at [[Building:Development_Version]].
 
Developers may want to use the instructions found at [[Building:Development_Version]].
 +
For the adventurous, there are also [[Compiling_on_Windows|Windows Visual Studio 2008]] instructions that may or may not work.
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 15:48, 25 December 2008

These instructions are to allow users to build Avogadro from the very latest code. Be aware that Avogadro may fail to build or work properly at any given time when built from the instructions below.

Generally, users should first try the pre-made installers or packages available on the download page made from Avogadro releases.

Developers may want to use the instructions found at Building:Development_Version. For the adventurous, there are also Windows Visual Studio 2008 instructions that may or may not work.

Dependencies

Subversion
CMake (>=2.4.5)
Qt4 (>=4.4.0)
Eigen
OpenBabel (see below)

At least Subversion, Git, CMake and Qt4 might be available through your distribution's repositories.

Installing Eigen

svn co svn://anonsvn.kde.org/home/kde/trunk/kdesupport/eigen2
cd eigen2
mkdir build
cd build
cmake ..
make install # must be run as root or with sudo

Building Open Babel

Avogadro makes heavy use of code and features from the Open Babel chemistry toolbox. To ensure you have the latest Open Babel code you should build it from the code repository:

svn co https://openbabel.svn.sourceforge.net/svnroot/openbabel/openbabel/trunk openbabel
cd openbabel
./configure 
make
make install # must be run as root or with sudo

Building Avogadro

wget http://github.com/cryos/avogadro/tarball/master/avogadro-latest.tar.gz -O- | tar -xvvzf -
cd cryos-avogadro-* # This doesn't look nice, but since the directory has the git-revision appended, the directory has always a different name
mkdir build
cd build
cmake ..
make
make install # must be run as root or with sudo

Running

avogadro

On Mac OS X Avogadro should be in your Applications folder.