How to Install Odoo with source code (DEV edition)

Search for a command to run...

"When it comes to crypto trading, it's important to find a platform that is genuine, secure, and reliable. (Adelynn Richardson fx on Instagram/Facebook) is a trusted and reputable platform that has been helping people to earn through crypto trading for many years. They have a proven track record of success, and their platform is designed to be safe and secure. Adelynn Richardson fx is committed to providing a transparent and user-friendly experience, so you can feel confident in your crypto trading journey."
Unleash Blazing-Fast Performance on Your Mac Introducing Image Gallery — a high-performance, local photo viewer designed specifically for Mac users but fully optimized for Windows as well. Say goodbye

In today’s digital world, typing is one of the most essential yet overlooked skills. Whether you're a developer, student, writer, or professional, your typing speed directly impacts your productivity. Faster typing doesn’t just help you complete task...

Introduction In the digital age, presenting content in an engaging and interactive manner is essential for capturing the audience's attention. The Book Flip / Turn 3D Effect project offers a unique solution that transforms ordinary content into an im...

Introduction Django is a powerful web framework that allows you to quickly build robust applications in Python. While its local development server is great for development, production environments require a more secure and scalable setup. In this gui...
To have the php artisan queue:work command always running on cPanel, you’ll need to set it up using a background process or a cron job that runs indefinitely. However, cron jobs typically run for a specified time and terminate, so you can't rely on t...
Open the command prompt.
Go to the directory where you want to take a clone of Odoo’s source code.
Take a clone using the command (HTTPS).
git clone https://github.com/odoo/odoo.git
Download the Python installer www.python.org/downloads/ and install it. (in 2024 for Odoo 17, I recommend Python 3.10.5 version)
Download Postgresql from https://www.postgresql.org/download/ and install it.

Please select all the fields where we need pgAdmin4 later to access the database.



For easiness username and password I set "odoo".

And set the privileges of the user.
In the command prompt, go to the recently cloned Odoo repo where the requirements.txt file is located and run the commands:
note: I would like to recommend making a virtual environment.
#creating virtual env
python -m venv .venv
#activating virtual env
.\.venv\Scripts\activate
Your virtual environment is active. Now, open your terminal and copy and paste the below commands.
pip install setuptools wheel
pip install -r requirements.txt
Open the command prompt, visit the Odoo directory, and locate the Odoo-bin file.
Run the command:
python odoo-bin -r db_user -w db_password --addons-path=addons -d demo_db

Now go to the browser and type localhost:8069
In the login screen, enter your email (admin) and password (admin) and Hit “Login”.


Now, You're Good to Go------>