How to install Odoo 14 in Linux Mint 20.2

Опубликовано: 19 Май 2026
на канале: kattabi Academy
1,081
9

Odoo Playlist قائمة دروس أدود
   • Learn odoo  
=========================================================
Odoo 14 for beginner book رابط كتاب اودو فورتين للمتديئن
https://www.researchgate.net/publicat...
=========================================


instructions for installing Odoo 14 in Mint 20.2
=======================================
sudo apt update && sudo apt upgrade

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

wget https://github.com/wkhtmltopdf/wkhtml...

sudo dpkg -i wkhtmltox_0.12.5-1.trusty_amd64.deb

If you find errors in a previous command, force install the dependencies with the following command:
sudo apt install -f

sudo apt install postgresql

sudo -u postgres createuser --superuser $(whoami)

git config --global user.name "Your Name"

git config --global user.email [email protected]

git clone -b 14.0 --single-branch --depth 1 https://github.com/odoo/odoo.git
python3 -m venv ~/o14v
source ~/o14v/bin/activate
cd ~/odoo/
pip3 install -r requirements.txt

Create cusotm folder inside odoo folder
mkdir custom
Create o14.conf inside odoo folder and paste in it the following:
==============================================
[options]
; This is the password that allows database operations:
admin_passwd = any new password
db_host = False
db_port = False
db_user = super user for PostgreSQL
db_password = False
addons_path = ~/odoo/addons, ~/odoo/custom
================================================
./odoo-bin -c o14.conf
Open browser and write the following url:
http://localhost:8069