Differences between revisions 32 and 34 (spanning 2 versions)
Revision 32 as of 2010-11-23 08:34:14
Size: 708
Editor: root
Comment:
Revision 34 as of 2010-12-07 10:59:59
Size: 924
Editor: root
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
= Install EMEN2 =

EMEN2 can be installed using either Python easy_install:

{{{
sudo easy_install emen2
}}}

Or by downloading the source, unpacking, and using Python distutils:

{{{
python ./setup.py build
sudo python ./setup.py install
}}}
Line 14: Line 29:
python -m emen2.db.admin -h $HOME/test_db

Installing and configuring EMEN2

Install Dependencies

You will first need to install the various EMEN2 dependencies. They are all straight-forward to install, and can generally be installed using Python's easy_install system.

Install EMEN2

EMEN2 can be installed using either Python easy_install:

sudo easy_install emen2

Or by downloading the source, unpacking, and using Python distutils:

python ./setup.py build
sudo python ./setup.py install

Quick Start

Here is a "quick start" guide to install EMEN2, initialize an EMEN2 DB, and start the web server. The "-h" argument in the scripts below are references to a directory to keep the EMEN2 DB; the directory will be created if it does not exist.

python -m emen2.clients.clone -h $HOME/test_db -- --defs
python -m emen2.web.server -h $HOME/test_db

EMEN2/Install (last edited 2013-06-27 06:59:34 by IanRees)