Last active
December 29, 2015 16:39
-
-
Save dreispt/7699194 to your computer and use it in GitHub Desktop.
Proof of concept for OpenERP installation using virtualenv and pip
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
# 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