Last active
February 5, 2019 18:38
-
-
Save dreispt/b30d5d737d32dbd1b5b5 to your computer and use it in GitHub Desktop.
Odoo minimal dependencies
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
sudo apt-get install python-virtualenv python-dev postgresql-client libldap2-dev libsasl2-dev libssl-dev libpq-dev | |
# python-virtualenv - virtualenv | |
# python-dev - compile python | |
# libldap2-dev libsasl2-dev libssl-dev - for python-ldap | |
# libpq-dev - psycopg2 | |
../ootest-env/bin/python setup.py develop | |
../ootest-env/bin/pip install pypdf # https://github.com/odoo/odoo/pull/1757 | |
$ sudo apt-get install postgresql | |
$ sudo -u postgres createuser --superuser daniel | |
$ createdb odoo-dev | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment