1- Aprende a instalar Odoo 19 en Ubuntu para desarrollo y pruebas

https://www.odoo.com/documentation/19... Requisitos: ubuntu 22.04 python 3.10 pip git postgresql Comandos importantes a tener en cuenta lsb_release -a sudo apt update && sudo DEBIAN_FRONTEND=noninteractive apt install -y -q --no-install-recommends \ git build-essential curl gnupg unzip zip \ fonts-dejavu-core fonts-freefont-ttf fonts-noto-core fonts-font-awesome gsfonts \ python3-dev libldap2-dev libpq-dev libsasl2-dev libxml2-dev libxslt1-dev libzip-dev libfreetype6-dev libjpeg-dev zlib1g-dev \ python3-pip python3-venv \ postgresql postgresql-client git clone --branch 19.0 --single-branch --depth 1 https://github.com/odoo/odoo.git python3 -m venv entorno_virtual source entorno_virtual/bin/activate CREATE USER odoo WITH PASSWORD 'odoo'; ALTER ROLE odoo WITH SUPERUSER; python3 odoo/odoo-bin -c odoo.conf --stop-after-init -s python3 odoo/odoo-bin -c base -d prueba01