Google Play services is used to update Google apps and apps from Google Play.
This component provides core functionality like authentication to your Google services, synchronized contacts, access to all the latest user privacy settings, and higher quality, lower-powered location based services.
Google Play services also enhances your app experience. It speeds up offline searches, provides more immersive maps, and improves gaming experiences.
Apps may not work if you uninstall Google Play services.

: Clone the Odoo Enterprise Repository. Access is granted to users with an active Odoo Enterprise Subscription .
# Update system packages sudo apt update && sudo apt upgrade -y # Install PostgreSQL sudo apt install postgresql postgresql-contrib -y # Install core development tools and libraries sudo apt install git python3-pip python3-dev python3-venv libxml2-dev libxslt1-dev zlib1g-dev libsasl2-dev libldap2-dev libjpeg-dev libpq-dev -y Use code with caution. Create a Dedicated PostgreSQL User
/opt/odoo/community/odoo-bin --addons-path=/opt/odoo/community/addons,/opt/odoo/enterprise
Installing Odoo Enterprise from source code requires managing two separate repositories: the base (the engine) and the Enterprise addons (the extra features).
Navigate to your core Odoo server directory and install the required dependencies: cd /opt/odoo/server pip install -r requirements.txt Use code with caution. Step 6: Configure the Odoo Enterprise Server install download odoo enterprise source code
python3 odoo/odoo-bin -c odoo.conf -d my-enterprise-db -i base Use code with caution. Copied to clipboard
sudo chown -R odoo:odoo /opt/odoo sudo mkdir /var/log/odoo sudo chown -R odoo:odoo /var/log/odoo Use code with caution. Run Odoo Manually (For Testing)
If you are an Enterprise customer or partner, you can request access to the private odoo/enterprise repository. Once granted, you can clone it using:
Create a configuration file at /etc/odoo.conf using your preferred text editor: sudo nano /etc/odoo.conf Use code with caution. : Clone the Odoo Enterprise Repository
This command installs the web_enterprise module ( -i for install) and stops Odoo after the operation completes ( --stop-after-init ). After execution, restart Odoo for the changes to take effect.
# 1. Clone Community source (public) git clone --branch 18.0 https://github.com/odoo/odoo.git /opt/odoo/community
Always set up Nginx as a reverse proxy with a free Let's Encrypt SSL certificate before exposing your source code installation to public internet traffic.
There are two primary ways to obtain the Enterprise source code depending on your user type: Source install — Odoo 19.0 documentation Copied to clipboard sudo chown -R odoo:odoo /opt/odoo
cd /opt/odoo python3 -m venv odoo-venv source odoo-venv/bin/activate Use code with caution.
python3 odoo-bin --addons-path=enterprise/,odoo/addons/ -d your_database_name Use code with caution. Copied to clipboard
To install Odoo Enterprise from source code, you must download two separate components: the base and the Odoo Enterprise addons . The Enterprise repository does not contain the full server code; it is a collection of additional modules that run on top of the Community version. 1. Download the Source Code