Download Odoo Enterprise Source Code — Install

Do not attempt to download and install Odoo Enterprise source code if you are looking for a "plug-and-play" experience. Use Odoo.sh (the cloud builder) or the Packaged Installer instead.

Do choose the source code installation if:

To install Odoo Enterprise from source code, you must combine the Odoo Community base with the Enterprise Add-ons. You need a valid Enterprise Subscription to access the private source files. Quick Start Checklist

License: Ensure you have an active Odoo Enterprise Subscription.

Access: Link your GitHub account to your Odoo account to access the private Enterprise repository. Base: Download the Odoo Community source code. 📥 1. Downloading the Source Code There are two primary ways to obtain the Enterprise files: Via GitHub (Recommended for Devs): Request access through your Odoo dashboard.

Clone the repository: git clone https://github.com --branch [version] --depth 1. Via Odoo Website: Log in to the Official Download Page.

Select your version and download the Source Code (.zip or .tar.gz). 🛠️ 2. Installation & Setup

Odoo Enterprise is essentially the Community edition with an extra folder of modules. Step 1: System Dependencies Install core packages on Linux (Ubuntu/Debian recommended): Database: sudo apt install postgresql. Tools: git, python3-pip, wkhtmltopdf. Step 2: Configure Add-ons Path

You must tell the Odoo server where to find both the Community and Enterprise folders. Locate your odoo.conf file.

Edit the addons_path line to include the path to your Enterprise folder:addons_path = /path/to/enterprise,/path/to/community/addons. Step 3: Install Python Requirements Enterprise source code | Odoo install download odoo enterprise source code

To install Odoo Enterprise from source code, you must first obtain the enterprise addons and then configure your local Odoo environment (which uses the open-source Community base) to include them in the addons_path. 1. Obtain the Source Code

Because Odoo Enterprise is a proprietary version, you cannot download it freely like the Community version.

Via Website: Log in to your Odoo Account using credentials associated with a valid Enterprise subscription to download a ZIP archive.

Via GitHub: If you are an official Odoo partner or have been granted access, you can clone the private repository:

git clone https://www.github.com/odoo/enterprise --depth 1 --branch 17.0 --single-branch Use code with caution. Copied to clipboard 2. Set Up the Base Environment

You must have a working Odoo Community installation first, as Enterprise is essentially a set of additional modules that sit on top of the base code.

Install Dependencies: Ensure you have Python (version 3.10+ for Odoo 17/18) and PostgreSQL installed. Clone Community Code:

git clone https://www.github.com/odoo/odoo --depth 1 --branch 17.0 --single-branch Use code with caution. Copied to clipboard 3. Configure and Launch

You must tell Odoo where to find both the base modules and the Enterprise modules. Do not attempt to download and install Odoo

Edit Configuration: Open your odoo.conf file and update the addons_path to include both directories:

addons_path = /path/to/odoo/addons, /path/to/enterprise/addons Use code with caution. Copied to clipboard

Run the Server: Start Odoo by pointing to your configuration file: python3 odoo-bin -c odoo.conf Use code with caution. Copied to clipboard

Activate Enterprise: After logging in to the web interface (default localhost:8069), go to Settings and enter your Subscription Code to activate Enterprise features. ✅ Summary

To install Odoo Enterprise, you must download the enterprise addons from your Odoo portal and link them to your Odoo Community installation via the addons_path in your configuration file. Source install — Odoo 19.0 documentation

Python. Odoo requires Python 3.10 or later to run. Changed in version 17: Minimum requirement updated from Python 3.7 to Python 3. How to Installl Odoo Enterprise using Source Code

This guide is written for technical users, system administrators, and partners evaluating Odoo.


This is where the source code installation shines compared to packaged versions.

Description

Steps (user flow)

Automated actions (what the wizard does)

Security & compliance

Outputs

Developer notes (for implementers)

Would you like a sample install script for Ubuntu 22.04 + Odoo 17 Enterprise (development mode) that performs these steps?

(Searching for related terms...)

I understand you're asking about installing or downloading the Odoo Enterprise source code. However, I need to provide an important clarification:

Odoo Enterprise is not freely available for download — it's a proprietary, licensed product. You can only access the Enterprise source code if: To install Odoo Enterprise from source code, you

sudo npm install -g less less-plugin-clean-css

Odoo now allows installation via pip using a private repository (requires subscription).
This method pulls both Community and Enterprise modules in one go.

# Set up Odoo's pip index with your credentials
pip install odoo --index-url https://USERNAME:PASSWORD@pip.odoo.com/enterprise/

This installs a full Odoo Enterprise environment (source code placed in .venv/lib/python3.x/site-packages/odoo/ and …/enterprise/).

Scroll To Top