Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo course community database gettingstarted
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo course community database gettingstarted
À propos de ce forum
  1. Getting Started
  2. Forum

How install odoo 18 in Desktop

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
installation
3 Réponses
18103 Vues
Avatar
Mohana

How install odoo 18 in Desktop

0
Avatar
Ignorer
Avatar
Atta Ullah Khattak
Meilleure réponse

Install Odoo 18 on Desktop (Ubuntu/Linux)

Requirements:
  • Ubuntu 20.04+ (or Debian)
  • Python 3.10+
  • PostgreSQL 14+
  • Git
  • Node.js & npm
  • wkhtmltopdf (for PDF reports)
1. Update and install dependencies:
sudo apt update && sudo apt upgrade -y
sudo apt install git python3-pip build-essential wget python3-dev libpq-dev \
  libxml2-dev libxslt1-dev zlib1g-dev libsasl2-dev libldap2-dev \
  libjpeg-dev libpq-dev libffi-dev libtiff5-dev libopenjp2-7 \
  liblcms2-dev libwebp-dev libharfbuzz-dev libfribidi-dev \
  libxcb1-dev libpq-dev libssl-dev curl -y
2. Install PostgreSQL
sudo apt install postgresql -y
sudo -u postgres createuser -s $USER
3. Install Python 3.10+ and pip packages
sudo apt install python3.10 python3.10-venv python3.10-dev -y
sudo apt install python3-pip -y
4. Install wkhtmltopdf (for PDF support)
sudo apt install wkhtmltopdf -y
5. Clone Odoo 18 (dev version)
git clone https://www.github.com/odoo/odoo --depth 1 --branch master odoo18
cd odoo18
6. Install Python dependencies
pip3 install -r requirements.txt
7. Run Odoo
./odoo-bin -d odoo18db -r yourusername --addons-path=addons --dev=all

You should now be able to access Odoo at:

http://localhost:8069

Installing Odoo 18 on Windows (Not Recommended for Dev)

You can do it using WSL (Windows Subsystem for Linux):

  1. Install WSL2 (Ubuntu 20.04)
  2. Follow the Linux steps above
  3. Access via browser on Windows: http://localhost:8069
Want Help with Auto-Script or Docker Setup?

I can give you a ready-to-go installation script or Docker Compose file to spin up Odoo 18 easily.

Bonus Tip

If you're doing this for testing or development, it's better to try Odoo 17 stable now and switch later to 18 when it releases (likely Oct 2025).

Need help setting up this on a VM or configuring it with Nginx, custom addons, etc.?

💬 Just ask or get pro help from: 👉 RASARD Teknoloji – Official Odoo Partner

📱 Join Odoo WhatsApp Community

Would you like a bash script to automate this setup?

0
Avatar
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi,

You can install Odoo 18 on your desktop in either Windows or Ubuntu.

To install in Ubuntu, you can follow the blog :

https://www.cybrosys.com/blog/how-to-install-odoo-18-on-ubuntu-24-04-lts-server

To install on Windows, you can use the following blog:

https://www.cybrosys.com/blog/how-to-install-odoo-17-in-windows


Hope it helps

0
Avatar
Ignorer
Avatar
Aniruddh Sisodia (AMCAP)
Meilleure réponse

You can use the below link

https://www.odoo.com/page/download

Fill in the form, choose your Operating system and version of Odoo and click on Download

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
phonenumbers not installed
installation
Avatar
Avatar
Avatar
Avatar
4
avr. 25
10936
ERR_TOO_MANY_REDIRECTS
access installation
Avatar
0
nov. 24
1887
un install odoo 16 on windows then installation problem with postgres that didnt install on my machine
odoo installation
Avatar
0
nov. 22
7406
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now