Skip to content

Instantly share code, notes, and snippets.

@tsaqib
Last active November 8, 2017 08:00
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 tsaqib/c8915096c7fde8ade3971ff51f764da7 to your computer and use it in GitHub Desktop.
Save tsaqib/c8915096c7fde8ade3971ff51f764da7 to your computer and use it in GitHub Desktop.
Installer script for Odoo 8 on Debian & Ubuntu VM/Azure
# Manually execute first: sudo -i
# Usage: wget -q -O - "$@" https://gist.githubusercontent.com/tsaqib/c8915096c7fde8ade3971ff51f764da7/raw/ --no-cache | sh
# After installation, codebase can be found at /usr/lib/python2.7/dist-packages/openerp
apt-get update -y && apt-get upgrade -y
wget http://nightly.odoo.com/extra/wkhtmltox-0.12.1.2_linux-jessie-amd64.deb
dpkg -i wkhtmltox-0.12.1.2_linux-jessie-amd64.deb
apt-get install -f
rm wkhtmltox-0.12.1.2_linux-jessie-amd64.deb
wget -O - https://nightly.odoo.com/odoo.key | apt-key add -
echo "deb http://nightly.odoo.com/8.0/nightly/deb/ ./" >> /etc/apt/sources.list
apt-get update -y && apt-get -y install odoo && apt-get -f -y install
service odoo status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment