Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo course community database gettingstarted
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo course community database gettingstarted
Acerca de este foro
  1. Getting Started
  2. Foro

How install odoo 18 in Desktop

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
installation
3 Respuestas
18091 Vistas
Avatar
Mohana

How install odoo 18 in Desktop

0
Avatar
Descartar
Avatar
Atta Ullah Khattak
Mejor respuesta

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
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Mejor respuesta

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
Descartar
Avatar
Aniruddh Sisodia (AMCAP)
Mejor respuesta

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
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
phonenumbers not installed
installation
Avatar
Avatar
Avatar
Avatar
4
abr 25
10927
ERR_TOO_MANY_REDIRECTS
access installation
Avatar
0
nov 24
1886
un install odoo 16 on windows then installation problem with postgres that didnt install on my machine
odoo installation
Avatar
0
nov 22
7405
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

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