Skip to content
Snippets Groups Projects
Commit b7327320 authored by Dilawar Singh's avatar Dilawar Singh
Browse files

Merge pull request #196 from BhallaLab/dilawar-patch-2

Update index.rst
parents f8908825 6f5ceea5
No related branches found
No related tags found
No related merge requests found
...@@ -4,100 +4,95 @@ Installation ...@@ -4,100 +4,95 @@ Installation
Use pre-built packages Use pre-built packages
---------------------- ----------------------
We strongly recommend that you use our repositories hosted at [Open Build We recommend that you use our repositories hosted at `Open Build Service <http://build.opensuse.org>`_.
Service](http://build.opensuse.org). We have packages for Debian, Ubuntu, We have `MOOSE` and `moogli` packages for Debian, Ubuntu, CentOS, Fedora, OpenSUSE/SUSE, RHEL, Scientific Linux.
CentOS, Fedora, OpenSUSE/SUSE, RHEL, Scientific Linux. Visit the following page Visit `this page <https://software.opensuse.org/download.html?project=home:moose&package=moose>`_
and follow the instructions. and follow instructions.
https://software.opensuse.org/download.html?project=home:moose&package=moose After adding the repositories to your package manager (read the instructed on the site)
You can install both `moose` and `moogli` using your package manager.
You can get both `moose` and `moogli` from the repositories after adding the On Debian/Ubuntu ::
repository to your package manager e.g.
On Debian/Ubuntu
$ sudo apt-get install moose moogli $ sudo apt-get install moose moogli
On CentOS/RHEL/Fedora/Scientific Linux On CentOS/RHEL/Fedora/Scientific Linux::
$ sudo yum install moose moogli $ sudo yum install moose moogli
On openSUSE On openSUSE ::
$ sudo zypper install moose moolgi $ sudo zypper install moose moolgi
In case your distribution is not listed on the repository page or
Pre-built binary packages takes care of dependencies. And also you don't have to
build the MOOSE by yourself. In case, your distribution is not listed above or
you want to build the lastest development code, following section lists out the you want to build the lastest development code, following section lists out the
steps to build MOOSE from its source code. steps to build MOOSE from its source code.
Building from source Building from source
------------------- -------------------
First, Download the latest source code of moose from github using `git` First, Download the latest source code of moose from github using `git`::
$ git clone https://github.com/BhallaLab/moose $ git clone https://github.com/BhallaLab/moose
Or, alternatively, you can download the `zip` file by clicking on the following Or, alternatively, you can download the ``zip`` file by clicking on the following
link, https://github.com/BhallaLab/moose/archive/master.zip. Unzip the file to link, https://github.com/BhallaLab/moose/archive/master.zip. Unzip the file to
get the source code. get the source code::
$ wget https://github.com/BhallaLab/moose/archive/master.zip
Install dependencies Install dependencies
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
Next, you have to install all required dependencies. Next, you have to install required dependencies.
- cmake - cmake (version 2.8 or higher)
- gsl-1.16 or higher [Source code](ftp://ftp.gnu.org/gnu/gsl/). - gsl-1.16 or higher `Source code <ftp://ftp.gnu.org/gnu/gsl/>`_.
- libhdf5 development package. Get it from - libhdf5 development package. Get it from
- libsbml (5.9.0, optional). You can download it from - libsbml (5.9.0, optional). You can download it from
[here](https://sourceforge.net/projects/sbml/files/libsbml/5.9.0/stable/) `here <https://sourceforge.net/projects/sbml/files/libsbml/5.9.0/stable/>`_
Make sure that `libsml` is installed with `zlib` and `lxml` support. Make sure that `libsml` is installed with `zlib` and `lxml` support.
If you are using buildtools, then use the following to install libsbml. If you are using buildtools, then use the following to install libsbml::
$ wget http://sourceforge.net/projects/sbml/files/libsbml/5.9.0/stable/libSBML-5.9.0-core-src.tar.gz
- wget http://sourceforge.net/projects/sbml/files/libsbml/5.9.0/stable/libSBML-5.9.0-core-src.tar.gz $ tar -xzvf libSBML-5.9.0-core-src.tar.gz
- tar -xzvf libSBML-5.9.0-core-src.tar.gz $ cd libsbml-5.9.0
- cd libsbml-5.9.0 $ ./configure --prefix=/usr --with-zlib --with-libxml
- ./configure --prefix=/usr --with-zlib --with-libxml $ make
- make $ sudo make install
- sudo make install
- python development package - python development package
- python numpy - numpy
On Ubuntu these can be installed by following command: On Ubuntu these can be installed by following command::
$ sudo apt-get install libhdf5-dev cmake libgsl0-dev libpython-dev python-numpy
$ sudo apt-get install libhdf5-dev cmake libgsl0-dev
On CentOS/Fedora/RHEL On CentOS/Fedora/RHEL::
$ sudo yum install hdf5-devel cmake libgsl-dev $ sudo yum install hdf5-devel cmake libgsl-dev python-devel python-numpy
On OpenSUSE On OpenSUSE
$ sudo zypper install hdf5-devel cmake libgsl-dev $ sudo zypper install hdf5-devel cmake libgsl-dev python-devel python-numpy
For MOOSE Graphical User Interface (GUI), there are additional dependencies: For MOOSE Graphical User Interface (GUI), some additional dependencies are required
- matplotlib - matplotlib
- Python-qt4 - Python-qt4
On Ubuntu/Debian, these can be installed with: On Ubuntu/Debian, these can be installed with::
$ sudo apt-get install python-matplotlib python-qt4 $ sudo apt-get install python-matplotlib python-qt4
On CentOS/Fedora/RHEL, On CentOS/Fedora/RHEL::
$ sudo yum install python-matplotlib python-qt4 $ sudo yum install python-matplotlib python-qt4
Now use `cmake` to build moose Now use `cmake` to build moose
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. codeblock:: bash
$ cd /to/moose/source/code $ cd /to/moose/source/code
$ mkdir _build $ mkdir _build
$ cd _build $ cd _build
$ cmake .. $ cmake ..
$ make $ make
$ ctest --output-on-failure $ ctest --output-on-failure # optional
This will build pyMOOSE (MOOSE's python extention), `ctest` will run few tests to This will build pyMOOSE (MOOSE's python extention), `ctest` will run few tests to
check if build process was successful. check if build process was successful.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment