Skip to content

Instantly share code, notes, and snippets.

@argami
Created October 8, 2011 10:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save argami/1272098 to your computer and use it in GitHub Desktop.
Save argami/1272098 to your computer and use it in GitHub Desktop.
Openerp Server Requirements
Installation instruction
curl https://raw.github.com/gist/1272098/e0199b49a72121c5e24b19275e7d544529c9e688/openerp-install.sh -o | sh
#!/bin/bash
server="openerp-server-6.0.3.tar.gz"
url="http://www.openerp.com/download/stable/source/$server"
cd /tmp/
if [ ! -f "$server" ];
then
curl -O $url
fi
tar xvfz openerp-server-6.0.3.tar.gz
cd openerp-server-6.0.3
python setup.py install
pip install -r https://gist.github.com/raw/1272098/5f416708a3711c5dec4c861183005fba5258a3ad/openerp-server-requirements.txt
lxml
psycopg2
pyyaml
reportlab
mako
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment