Created
October 8, 2011 10:20
-
-
Save argami/1272098 to your computer and use it in GitHub Desktop.
Openerp Server Requirements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation instruction | |
curl https://raw.github.com/gist/1272098/e0199b49a72121c5e24b19275e7d544529c9e688/openerp-install.sh -o | sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lxml | |
psycopg2 | |
pyyaml | |
reportlab | |
mako |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment