Download Odoo Enterprise Source Code — Proven & Trusted
For most developers and implementation partners, this is the standard method.
You don’t need the source code to use Odoo Enterprise (the SaaS version or .exe installer handles that). However, developers and sysadmins download it for:
Initialize a private Git repository (GitLab, Bitbucket, or AWS CodeCommit) to track changes. Download Odoo Enterprise Source Code
cd ~/odoo-enterprise-17/enterprise
git init
git add .
git commit -m "Initial Odoo Enterprise 17.0 source"
mkdir ~/odoo-enterprise-17
cd ~/odoo-enterprise-17
Example: A consultancy uses a leaked Enterprise build to deliver a client solution; when an update is released, their installation breaks and the client loses trust because no vendor support applies.
docker cp odoo-enterprise:/usr/lib/python3/dist-packages/odoo/addons ./enterprise_addons For most developers and implementation partners, this is
The Enterprise edition is updated regularly with bug fixes and security patches.
Clone the Enterprise repository:
git clone https://github.com/odoo/enterprise.git
Note: If you are not logged into GitHub with a linked account, this will return a 404 error.
Clone the Community repository (Required dependency): Odoo Enterprise runs on top of the Community framework. You need both. mkdir ~/odoo-enterprise-17 cd ~/odoo-enterprise-17
git clone https://github.com/odoo/odoo.git -b 17.0 --depth=1
git clone https://github.com/odoo/enterprise.git -b 17.0 --depth=1
Set up your addons path:
./odoo-bin --addons-path="odoo/addons,enterprise"
