Odoo on Ubuntu: How I Installed It

What I Did I installed Odoo (open-source ERP) on Ubuntu for a project. These are the exact steps I ran — all apt commands on Ubuntu. sudo apt update && sudo apt upgrade Create an Odoo User Run this command to create a system user for Odoo: sudo adduser -system -home=/opt/odoo -group odoo Install PostgreSQL Odoo needs PostgreSQL as its database, so install it with: sudo apt-get install postgresql -y Create a PostgreSQL User for Odoo sudo su - postgres -c "createuser -s odoo" 2> /dev/null || true Install Python Dependencies Odoo requires some Python packages. Install them with: ...

August 11, 2022 · 2 min · Saad