Odoo 10 Installation in Ubuntu 16.04

Опубликовано: 14 Март 2026
на канале: Tutorcamps
12,889
44

INSTALLATION NOTES
--------------------
--------------------


Step 1 : Update apt source list
------------------------------------------

sudo apt-get update


Step 2 : Install Updates
--------------------------------

sudo apt-get upgrade

Step 3 : Install Python Dependencies for Odoo
-----------------------------------------------------------------

sudo apt-get install python-dateutil python-docutils python-feedparser python-jinja2 python-ldap python-libxslt1 python-lxml python-mako python-mock python-openid python-psycopg2 python-psutil python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-unittest2 python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi poppler-utils python-pip python-pypdf python-passlib python-decorator gcc python-dev mc bzr python-setuptools python-markupsafe python-reportlab-accel python-zsi python-yaml python-argparse python-openssl python-egenix-mxdatetime python-usb python-serial lptools make python-pydot python-psutil python-paramiko poppler-utils python-pdftools antiword python-requests python-xlsxwriter python-suds python-psycogreen python-ofxparse python-gevent

Step 4 : Odoo Web Dependencies
-----------------------------------------------

sudo apt-get install -y npm

sudo ln -s /usr/bin/nodejs /usr/bin/node

sudo npm install -g less less-plugin-clean-css

Step 5 : Install PostgreSQL
--------------------------------------

sudo apt-get install python-software-properties

sudo vim /etc/apt/sources.list.d/pgdg.list

add a line for the repository

deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main

wget --quiet -O - https://www.postgresql.org/media/keys... | sudo apt-key add -

sudo apt-get update

sudo apt-get install postgresql-9.6

Step 6 : Create Database user for Odoo
-------------------------------------------------------

sudo su postgres

cd

createuser -s odoo

createuser -s ubuntu_user_name

exit

Step 7 : Create Odoo user and group
--------------------------------------------------

sudo adduser --system --home=/opt/odoo --group odoo

Step 8 : Install Gdata
-----------------------------

cd /opt/odoo

Go to the link “https://pypi.python.org/pypi/gdata” and download the gdata-2.0.18 and transfer the file to server.
Otherwise through terminal follow the below step:

sudo wget https://pypi.python.org/packages/a8/7...

sudo tar zxvf gdata-2.0.18.tar.gz

sudo chown -R odoo: gdata-2.0.18

sudo -s

cd gdata-2.0.18/

python setup.py install

exit

Step 9 : Odoo 10 Download from GitHub
--------------------------------------------------------

Get lastest Odoo 10 from github repository. Download the Zip file from URL :
“https://github.com/odoo/odoo/tree/10.0″ .
Transfer the same file to /opt/odoo directory on server through ftp. Otherwise Follow the below Step

cd /opt/odoo

sudo wget https://github.com/odoo/odoo/archive/...

sudo unzip 10.0.zip

sudo chown -R odoo: odoo-10.0

Or Git Clone Odoo
git clone --depth=1 --branch=10.0 https://github.com/odoo/odoo.git /opt/odoo/odoo

sudo mv odoo/ odoo-10.0/

sudo chown -R odoo: odoo-10.0

Step 10 : Create Odoo Log File
------------------------------------------

sudo mkdir /var/log/odoo

sudo chown -R odoo:root /var/log/odoo

Step 11 : Edit Odoo configuration file
---------------------------------------------------

sudo cp /opt/odoo/odoo-10.0/debian/odoo.conf /etc/odoo.conf

sudo chown odoo: /etc/odoo.conf

sudo vim /etc/odoo.conf


#Copy and paste below content in config file , write correct addons paths

[options]

; This is the password that allows database operations:

; admin_passwd = PASSWORD

db_host = False

db_port = False

db_user = odoo

db_password = False

addons_path = /opt/odoo/odoo-10.0/addons

;Log Settings

logfile = /var/log/odoo/odoo.log

log_level = error


Step 12 : Now Start Odoo Server
---------------------------------------------

cd /opt/odoo/odoo-10.0

./odoo-bin

Step 13 : Go to web browser to access Odoo 10
-------------------------------------------------------------------

http://localhost:8069