{"id":2440,"date":"2025-12-30T12:30:00","date_gmt":"2025-12-30T18:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2440"},"modified":"2026-01-31T01:35:26","modified_gmt":"2026-01-31T07:35:26","slug":"how-to-install-odoo-19-on-debian-13","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/","title":{"rendered":"How to install Odoo 19 on Debian 13"},"content":{"rendered":"\n<div id=\"linux-62277040\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>This blog post covers how to install Odoo 19 on Debian 13. Odoo is an open-source business management software that offers a variety of features, including accounting, CRM, e-commerce, and inventory, all in a single platform. The key benefits of using Odoo include integrated modules that connect with a wide range of business applications, its modular design, customization for specific business requirements, a centralized database, deployment options, a user-friendly, intuitive interface, and more. Odoo stores information in the PostgreSQL database management system, which will also be explained in this post.<\/p>\n\n\n\n<p>Installing Odoo 19 on Debian 13 is a straightforward process that may take up to 15 minutes. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running Debian 13 OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1. Update the system<\/h2>\n\n\n\n<p>Before we start installing Odoo and its prerequisites, we need to update the packages to their latest versions. To do that, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Python along with its Dependencies<\/h2>\n\n\n\n<p>The latest Python 3.13 is already included in the default Debian 13 repo. To install Python 3.13, along with other Odoo prerequisites, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install python3 python3-venv python3-pip python3-psycopg2 wget build-essential libfreetype-dev libxml2-dev libzip-dev libsasl2-dev node-less libjpeg-dev zlib1g-dev libpq-dev libxslt1-dev libldap2-dev libtiff5-dev libopenjp2-7-dev libcap-dev npm node-less -y<\/pre>\n\n\n\n<p>To verify the installation of Python 3, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python3 -V<\/pre>\n\n\n\n<p>You should get output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# python3 -V<br>Python 3.13.5<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Install Wkhtmltopdf<\/h2>\n\n\n\n<p>Wkhtmltopdf is required and is used to convert HTML pages to PDF files in Odoo 19 and lower Odoo versions, too. To install it, execute the following commands one by one:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wget https:\/\/github.com\/wkhtmltopdf\/wkhtmltopdf\/releases\/download\/0.12.4\/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz<br><br>tar xvf wkhtmltox*.tar.xz<br><br>sudo mv wkhtmltox\/bin\/wkhtmlto* \/usr\/bin<\/pre>\n\n\n\n<p>Once installed, check the wkhtmltopdf version with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">wkhtmltopdf -V<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# wkhtmltopdf -V\nwkhtmltopdf 0.12.4 (with patched qt)<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Install the PostgreSQL database service<\/h2>\n\n\n\n<p>To install the PostgreSQL database service, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install postgresql -y<\/pre>\n\n\n\n<p>Start and enable the PostgreSQL service with the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start postgresql &amp;&amp; sudo systemctl enable postgresql<\/pre>\n\n\n\n<p>To check the status of the service<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status postgresql<\/pre>\n\n\n\n<p>You should get output similar to this<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status postgresql<br>\u25cf postgresql.service - PostgreSQL RDBMS<br>     Loaded: loaded (\/usr\/lib\/systemd\/system\/postgresql.service; enabled; preset: enabled)<br>     Active: active (exited) since Tue 2025-10-28 05:29:38 CDT; 39s ago<br> Invocation: 46a6923b93bc40ad8b10872c856a9306<br>   Main PID: 21895 (code=exited, status=0\/SUCCESS)<br>   Mem peak: 1.7M<br>        CPU: 21ms<br><br>Oct 28 05:29:38 host.test.vps systemd[1]: Starting postgresql.service - PostgreSQL RDBMS...<br>Oct 28 05:29:38 host.test.vps systemd[1]: Finished postgresql.service - PostgreSQL RDBMS.<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5. Create Odoo System and Database User<\/h2>\n\n\n\n<p>Next, we will create an Odoo user under the <strong>odoo 19<\/strong> name:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo useradd -m -U -r -d \/opt\/odoo19 -s \/bin\/bash odoo19<\/pre>\n\n\n\n<p>After this, we need an Odoo 19 database user, also, under the name of <strong>odoo 19<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo su - postgres -c \"createuser -s odoo19\"<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6. Download and Install Odoo 19<\/h2>\n\n\n\n<p>First, we need to log in as an <strong>Odoo 19<\/strong> user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">su - odoo19<\/pre>\n\n\n\n<p>Download Odoo 19 files from the Odoo GitHub repository:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git clone https:\/\/www.github.com\/odoo\/odoo --depth 1 --branch 19.0 \/opt\/odoo19\/odoo19<\/pre>\n\n\n\n<p>Once downloaded, create a Python virtual environment and install the Odoo 19 requirements with the following commands one by one:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python3.13 -m venv odoo19-venv\nsource odoo19-venv\/bin\/activate\npip install --upgrade pip\npip3 install wheel\npip3 install -r odoo19\/requirements.txt\n\nAfter requirements are installed, deactivate the environment with:<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">deactivate<\/pre>\n\n\n\n<p>Then press CTRL+D to log out of the <strong>odoo19<\/strong> user. The screen should look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">(odoo19-venv) odoo19@host:~$ deactivate\nodoo19@host:~$ ^C\nodoo19@host:~$\nlogout\n\nNext, we need to create the Odoo 19 custom addons directory, the Log file directory, along with the Log file for Odoo 19, and grant the correct permissions:<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">mkdir \/opt\/odoo19\/odoo19-custom-addons<br>chown -R odoo19:odoo19 \/opt\/odoo19\/odoo19-custom-addons<br>mkdir -p \/var\/log\/odoo19\/ &amp;&amp; touch \/var\/log\/odoo19\/odoo19.log<br>chown -R odoo19:odoo19 \/var\/log\/odoo19\/<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7. Create Odoo configuration file<\/h2>\n\n\n\n<p>To create the Odoo 19 configuration file, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo nano \/etc\/odoo19.conf<\/pre>\n\n\n\n<p>Paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[options]<br>admin_passwd = StrongMasterPassword <br>db_host = False <br>db_port = False <br>db_user = odoo19 <br>db_password = False <br>xmlrpc_port = 8069 <br>logfile = \/var\/log\/odoo19\/odoo19.log addons_path = \/opt\/odoo19\/odoo19\/addons,\/opt\/odoo19\/odoo19-custom-addons<\/pre>\n\n\n\n<p>Save the file and close it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8. Create Odoo Service file<\/h2>\n\n\n\n<p>Next, we need to create an Odoo 19 service file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo nano \/etc\/systemd\/system\/odoo19.service<\/pre>\n\n\n\n<p>Paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[Unit]<br>Description=odoo19<br>[Service]<br>Type=simple<br>SyslogIdentifier=odoo19<br>PermissionsStartOnly=true<br>User=odoo19<br>Group=odoo19<br>ExecStart=\/opt\/odoo19\/odoo19-venv\/bin\/python3 \/opt\/odoo19\/odoo19\/odoo-bin -c \/etc\/odoo19.conf<br>StandardOutput=journal+console<br>[Install]<br>WantedBy=multi-user.target<\/pre>\n\n\n\n<p>Save the file and close it.<\/p>\n\n\n\n<p>Start and enable the odoo service for automatic start on system boot:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl start odoo19 &amp;&amp; sudo systemctl enable odoo19<\/pre>\n\n\n\n<p>To check the status of the service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status odoo19<\/pre>\n\n\n\n<p>You should receive output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:~# sudo systemctl status odoo19<br>\u25cf odoo19.service - odoo19<br>     Loaded: loaded (\/etc\/systemd\/system\/odoo19.service; enabled; preset: enabled)<br>     Active: active (running) since Tue 2025-10-28 06:12:51 CDT; 5s ago<br> Invocation: d4e0b0f708294643814921d16d927a4b<br>   Main PID: 24153 (python3)<br>      Tasks: 4 (limit: 4640)<br>     Memory: 80.6M (peak: 81.2M)<br>        CPU: 2.750s<br>     CGroup: \/system.slice\/odoo19.service<br>             \u2514\u250024153 \/opt\/odoo19\/odoo19-venv\/bin\/python3 \/opt\/odoo19\/odoo19\/odoo-bin -c \/etc\/odoo19.conf<br><br>Oct 28 06:12:51 host.test.vps systemd[1]: Started odoo19.service - odoo19.<\/pre>\n\n\n\n<p>Now you can access your Odoo 19 at http:\/\/YourServerIPAddress:8069<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"728\" height=\"574\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/odoo1.jpg\" alt=\"Odoo 19 on Debian 13\" class=\"wp-image-2441\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/odoo1.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/odoo1-300x237.jpg 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/odoo1-150x118.jpg 150w\" sizes=\"(max-width: 728px) 100vw, 728px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>That\u2019s it. You learned how to install Odoo 19 on Debian 13.<\/p>\n\n\n\n<p>If you have difficulties with this, our Linux admins will help you. Sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">monthly server management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">per-incident server support<\/a> plans and submit a support ticket.<\/p>\n\n\n\n<p>If you liked this post about installing Odoo 19 on Debian 13, please share it with your friends or leave a comment below. Thanks.<\/p><div id=\"linux-3143824915\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This blog post covers how to install Odoo 19 on Debian 13. Odoo is an open-source business management software that offers a variety of features, including accounting, CRM, e-commerce, and inventory, all in a single platform. The key benefits of using Odoo include integrated modules that connect with a wide range of business applications, its [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2446,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[201],"tags":[318,199,331],"class_list":["post-2440","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian-13","tag-how-to-install","tag-odoo-19"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Odoo 19 on Debian 13 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install Odoo 19 on Debian 13 using our latest step-by-step guide or let our Linux engineers set it all up for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Odoo 19 on Debian 13 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install Odoo 19 on Debian 13 using our latest step-by-step guide or let our Linux engineers set it all up for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-30T18:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-31T07:35:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-odoo-19-on-debian-13.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install Odoo 19 on Debian 13\",\"datePublished\":\"2025-12-30T18:30:00+00:00\",\"dateModified\":\"2026-01-31T07:35:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/\"},\"wordCount\":534,\"commentCount\":2,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-odoo-19-on-debian-13.jpg\",\"keywords\":[\"debian 13\",\"how to install\",\"odoo 19\"],\"articleSection\":[\"Debian\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/\",\"name\":\"How to install Odoo 19 on Debian 13 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-odoo-19-on-debian-13.jpg\",\"datePublished\":\"2025-12-30T18:30:00+00:00\",\"dateModified\":\"2026-01-31T07:35:26+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install Odoo 19 on Debian 13 using our latest step-by-step guide or let our Linux engineers set it all up for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-odoo-19-on-debian-13.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-odoo-19-on-debian-13.jpg\",\"width\":742,\"height\":410,\"caption\":\"How to install Odoo 19 on Debian 13\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-odoo-19-on-debian-13\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Odoo 19 on Debian 13\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Odoo 19 on Debian 13 | LinuxHostSupport","description":"Learn how to install Odoo 19 on Debian 13 using our latest step-by-step guide or let our Linux engineers set it all up for you.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/","og_locale":"en_US","og_type":"article","og_title":"How to install Odoo 19 on Debian 13 | LinuxHostSupport","og_description":"Learn how to install Odoo 19 on Debian 13 using our latest step-by-step guide or let our Linux engineers set it all up for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-12-30T18:30:00+00:00","article_modified_time":"2026-01-31T07:35:26+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-odoo-19-on-debian-13.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install Odoo 19 on Debian 13","datePublished":"2025-12-30T18:30:00+00:00","dateModified":"2026-01-31T07:35:26+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/"},"wordCount":534,"commentCount":2,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-odoo-19-on-debian-13.jpg","keywords":["debian 13","how to install","odoo 19"],"articleSection":["Debian"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/","name":"How to install Odoo 19 on Debian 13 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-odoo-19-on-debian-13.jpg","datePublished":"2025-12-30T18:30:00+00:00","dateModified":"2026-01-31T07:35:26+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install Odoo 19 on Debian 13 using our latest step-by-step guide or let our Linux engineers set it all up for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-odoo-19-on-debian-13.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-odoo-19-on-debian-13.jpg","width":742,"height":410,"caption":"How to install Odoo 19 on Debian 13"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-odoo-19-on-debian-13\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Odoo 19 on Debian 13"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2440","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2440"}],"version-history":[{"count":8,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2440\/revisions"}],"predecessor-version":[{"id":2505,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2440\/revisions\/2505"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2446"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2440"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2440"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}