Skip to content
Cédric Joron edited this page Aug 22, 2013 · 5 revisions

LBE Preparation

This Documentation is only for the RELEASEv1 Version of LBE.

LBE needs the Django framework to work. You can download it from the official django site : https://www.djangoproject.com/download/1.4.3/tarball/

	tar xzvf Django-1.4.3.tar.gz
	cd Django-1.4.3
	sudo python setup.py install

After installing Django framework, you need to install some extra library to lbe works : mysqldb (for LBE configuration) You need to install python-pip, in order to install some libraries for python:

	pip install pyyaml

You need to install the NoSQL server MongoDB.

LBE should use the latest release version of Mongo. Do not use mongo version < 2 in order to prevent queries error.

Into your OS and for developpement python :

	pip install mongo

You need yo install ldap for python too:

   sudo apt-get install python-ldap

In order to create database, you need to install the South migration:

   sudo pip install south

Now, you are ready to get LBE latest version and to configure it.

Install LBE

After installed Django, you need to get the latest release of LBE using git :

	git clone https://github.com/OpenCSI/lbe.git
	cd lbe

Clone this wiki locally