Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
sudo apt-get install apache2 libapache2-mod-wsgi git-core python-virtualenv postfix openjdk-6-jre-headless postgresql python-psycopg2 build-dep

Make a virtual python environment.

Code Block
cd /opt/python_environments/
sudo virtualenv --no-site-packages norduni

Install needed python modules.

Code Block
sudo su
source python_environments/norduni/bin/activate
pip install django ipaddr argparse pexpect markdown psycopg2

Add the following python modules if you are running the Neo4j stand alone server:

...