Skip to Content
Menu
This question has been flagged
3 Replies
13718 Views

Hi everybody,

i would like to install the latest version of odoo8 (http://nightly.odoo.com/8.0/nightly/src/). Could you help me? I wouldn't like to install odoo directly in the ubuntu file system by using the github method

Thks.

Avatar
Discard

Please check the following url: http://www.theopensourcerer.com/2014/09/how-to-install-openerp-odoo-8-on-ubuntu-server-14-04-lts/

Author

I also try to use this link but it isn't the method i am needing. this method means that i will install odoo directly in my files system. Me i would like to do it in only one file i will create.

Best Answer

Did u try to install Odoo latest version using Odoo document section? https://doc.odoo.com/install/linux/ 

 

Avatar
Discard
Author

Yes but it for old version. not for odoo8

Best Answer

Follow the steps on this page: https://www.odoo.com/forum/help-1/question/install-odoo-stable-on-ubuntu-lts-14-04-63212

Avatar
Discard
Best Answer

Manual installation without auto-start:

1.    sudo apt-get update
2.    sudo apt-get upgrade
3.    sudo apt-get install git
4.    sudo apt-get install graphviz ghostscript postgresql-client \
python-dateutil python-feedparser python-matplotlib \
python-ldap python-libxslt1 python-lxml python-mako \
python-openid python-psycopg2 python-pybabel python-pychart \
python-pydot python-pyparsing python-reportlab python-simplejson \
python-tz python-vatnumber python-vobject python-webdav \
python-werkzeug python-xlwt python-yaml python-imaging
5.    sudo apt-get install gcc python-dev mc bzr python-setuptools python-babel \
python-feedparser python-reportlab-accel python-zsi python-openssl \
python-egenix-mxdatetime python-jinja2 python-unittest2 python-mock \
python-docutils lptools make python-psutil python-paramiko poppler-utils \
python-pdftools antiword postgresql
6.    sudo -u postgres createuser -s odoo
7.    Install Odoo version: (version 8 is under https://github.com/odoo/odoo/tree/8.0)
wget -O- https://raw.githubusercontent.com/odoo/odoo/master/odoo.py | python
8.    cd odoo/
9.    ./openerp-server

Start Odoo server:
1. Cd Odoo/
2. ./openerp-server

 

Automatic install script with automatic booting after startup:

1. sudo nano odoo_install.sh
2. Add following lines of code: http://pastebin.com/ZbwJpL5h (note this script is made by André Schenkels, credit to him.)
3. Sudo chmod +x odoo_install.sh
4. Execute the file to auto-install: ./odoo_install.sh
5. After this is done do a reboot: sudo shutdown -r now
You will now see Odoo starts automaticly!

Avatar
Discard