Skip to content

Instantly share code, notes, and snippets.

@dreispt
Last active December 29, 2015 16:39
Show Gist options
  • Save dreispt/7699194 to your computer and use it in GitHub Desktop.
Save dreispt/7699194 to your computer and use it in GitHub Desktop.
Proof of concept for OpenERP installation using virtualenv and pip
# Create a virtualenv; use system packages to make this faster
virtualenv --system-site-packages myopenerp
cd myopenerp
source bin/activate
# As an example, install OpenERP with the CRM App
pip install --extra-index-url https://googledrive.com/host/0Bz7bXY1bYyqJa2xUSmFVOUVySHc/simple openerp-crm
# Show installed server version
openerp-server --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment