How to Install Odoo on Ubuntu

2 years ago
26

Odoo is a management software suite for businesses that include CRM, e-commerce, accounting, billing, manufacturing, warehouse and inventory management, etc. The good news is, we can install it in the Ubuntu as well

This video will show you how you can install Odoo in Ubuntu.

Enjoy the video!

⏰Timestamps⏰

00:00 Intro
00:13 Install Pre-requisite
00:45 Create a System User
00:54 Install PostgreSQL
01:08 Create a User for PostgreSQL
01:28 Configure Odoo
02:05 Create a Directory
03:04 Reload Deamon
03:14 Start Odoo
03:26 Outro

Pre-requisite
sudo apt install git python3-pip build-essential wget python3-dev python3-venv \
python3-wheel libfreetype6-dev libxml2-dev libzip-dev libldap2-dev libsasl2-dev \
python3-setuptools node-less libjpeg-dev zlib1g-dev libpq-dev \
libxslt1-dev libldap2-dev libtiff5-dev libjpeg8-dev libopenjp2-7-dev \
liblcms2-dev libwebp-dev libharfbuzz-dev libfribidi-dev libxcb1-dev

Install PostgreSQL
sudo apt install postgresql

Clon Odoo from Github
git clone https://www.github.com/odoo/odoo --depth 1 --branch 14.0 /opt/odoo14/odoo

Loading comments...