Step-by-step guide

for software installation

Prerequisites

The SBMLevolver has been developed and tested only under Linux, and it will probably also run under any current MacOS operating system. No Windows version is planned, since the effort needed for porting is too big at the current stage. For installation of the program, the following freely-available libraries are needed and should be installed in the order in which they are given here.
  1. Installation of Sundials

    $> wget https://computation.llnl.gov/casc/sundials/download/code/old/sundials-2.3.0.tar.gz
    $> tar xfz sundials-2.3.0.tar.gz
    $> cd sundials-2.3.0/
    $> ./configure
    $> make
    $> sudo make install
    $> cd ..

  2. Installation of libsbml

    $> wget http://users.minet.uni-jena.de/~biosys/esignet/downloads/libsbml-3.1.1-patched-src.zip
    $> unzip libsbml-3.1.1-patched-src.zip
    $> cd libsbml-3.1.1/
    $> ./configure
    $> make
    $> sudo make install
    $> cd ..

  3. Installation of SBML_odeSolver

    First make sure, that the library directory is clean:

    $> sudo rm /usr/local/lib/libODES.*


    Then install SBML_odeSolver:

    $> wget http://users.minet.uni-jena.de/~biosys/esignet/downloads/SBML_odeSolver_version_corresponding_to_SBMLevolver.tar.gz
    $> tar xfz SBML_odeSolver_version_corresponding_to_SBMLevolver.tar.gz
    $> cd SBML_odeSolver/
    $> ./configure
    $> make
    $> sudo make install
    $> cd ..

  4. Installation of sbmlevolver

    $> wget http://users.minet.uni-jena.de/~biosys/esignet/downloads/sbmlevolver.tar.gz
    $> tar xfz sbmlevolver.tar.gz
    $> cd sbmlevolver-release-dec-08/
    $> ./autogen.sh
    $> ./configure
    $> make
    $> sudo make install
    $> cd ..

Installation instructions

For instructions regarding installation of the software, see the

INSTALL

file included in the software package.