{"id":16394,"date":"2022-09-28T16:23:20","date_gmt":"2022-09-28T16:23:20","guid":{"rendered":"https:\/\/www.guru.com\/blog\/?p=16394"},"modified":"2022-09-28T16:26:29","modified_gmt":"2022-09-28T16:26:29","slug":"how-to-install-erpnext","status":"publish","type":"post","link":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/","title":{"rendered":"How to Install ERPNext"},"content":{"rendered":"\n<p>ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities.<\/p>\n\n\n\n<p>In fact, ERPNext comes with over 1000 objects that business owners can utilize as a means of enhancing their overall workflows. This includes financial accounting, order management, Human Resources and Payroll, manufacturing, and CRM. If you\u2019re having trouble with ERPNext, you can always <a href=\"https:\/\/www.guru.com\/m\/hire\/freelancers\/erpnext\/\" target=\"_blank\" rel=\"noreferrer noopener\">hire an ERPNext consultant<\/a> who can help you understand some of the basics as well as <a href=\"https:\/\/www.guru.com\/blog\/how-to-update-erpnext\/\" target=\"_blank\" rel=\"noreferrer noopener\">how to update ERPNext<\/a>.<\/p>\n\n\n\n<p>If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites&nbsp;<\/h2>\n\n\n\n<p>Before you get started, there are a few software requirements that you need to fulfill. You will need Updated Ubuntu 20.04, sudo privileges, Python 3.6+, Node.js 14+, Redis 5, MariaDB 10.3.x, Postgres 9.5.x, yarn 1.12+, pip 20+, wkhtmltopdf (version 0.12.5 with patched qt), cron, and NGINX.<\/p>\n\n\n\n<p>On the software side of things, you need a machine with the following specifications at the bare minimum\u2014four gigabytes (GB) of RAM and forty GB of Hard Disk Space.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Getting Started With Installing ERPNext<\/li><\/ol>\n\n\n\n<p>Git is the most commonly utilized version control system. It can track any changes you make to files, so you always have a record of what has been done and you can undo changes or revert to older versions. Git also facilitates collaboration by allowing changes by multiple people to become merged within a single source.<\/p>\n\n\n\n<p>To install Git, use the following command in the terminal on Linux: sudo apt-get install git.<\/p>\n\n\n\n<p>Then, you will need to install Python. Python-dev is the package file that you are looking for, as it contains everything that you need: sudo apt-get install python3-dev.<\/p>\n\n\n\n<p>You now need to install Python\u2019s package manager, called pip: sudo apt-get install python3-setuptools python3-pip. Next, you will need to install virtualenv: sudo apt-get install virtualenv.<\/p>\n\n\n\n<p>This is followed by MariaDB 10.5 stable package: https:\/\/downloads.mariadb.org\/mariadb\/repositories\/#mirror=piconets&nbsp;<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\"><li>Setting Up MySQL<\/li><\/ol>\n\n\n\n<p>Next, you will need to initialize the MySQL server setup: sudo mysql_secure_installation. Then, you can get the MySQL database development files: sudo apt-get install libmysqlclient-dev.<\/p>\n\n\n\n<p>Here, you can edit the mariadb configuration: sudo nano \/etc\/mysql\/my.cnf.<\/p>\n\n\n\n<p>Then, add this to the file:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>[mysqld]<\/li><li>character-set-client-handshake = FALSE<\/li><li>character-set-server = utf8mb4<\/li><li>collation-server = utf8mb4_unicode_ci<\/li><li>[mysql]<\/li><li>default-character-set = utf8mb4<\/li><\/ul>\n\n\n\n<p>Press Ctrl + X to exit, and then run this command: sudo service mysql restart.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\"><li>Installing Redis and Node.js<\/li><\/ol>\n\n\n\n<p>Redis is an open-source, DSB-licensed in-memory data structure that is used as a database, cache, and message broker. You can install it with the following command: sudo apt-get install redis-server.<\/p>\n\n\n\n<p>Next, you need to get Node.js. To do so, use this command:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>sudo apt-get install curl<\/li><li>curl -sL https:\/\/deb.nodesource.com\/setup_14.x | sudo -E bash &#8211;<\/li><li>sudo apt-get install -y nodejs<\/li><\/ul>\n\n\n\n<p>You will now need to install Yarn by using this command: sudo npm install -g yarn, followed by: wkhtmltopdf: sudo apt-get install xvfb libfontconfig wkhtmltopdf. Then, you can install frappe-bench: sudo -H pip3 install frappe-bench<\/p>\n\n\n\n<p>Initialize the frappe bench and install the latest version if required:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>bench init frappe-bench &#8211;frappe-branch version-13<\/li><li>cd frappe-bench\/<\/li><li>bench start<\/li><\/ul>\n\n\n\n<p>Now you will need to create a site in frappe bench: bench new-site dcode.com.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\"><li>Installing ERPNext<\/li><\/ol>\n\n\n\n<p>You will now be installing ERPNext using these commands:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>bench get-app erpnext &#8211;branch version-14<\/li><li>###OR<\/li><li>bench get-app https:\/\/github.com\/frappe\/erpnext &#8211;branch version-14<\/li><li>bench &#8211;site dcode.com install-app erpnext<\/li><li>bench start<\/li><\/ul>\n\n\n\n<p>You can now create a new user:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>sudo adduser dcode-frappe<\/li><li>sudo usermod -aG sudo dcode-frappe<\/li><li>su &#8211; dcode-frappe<\/li><\/ul>\n\n\n\n<p>Then, you can set up the production:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>sudo bench setup production dcode-frappe<\/li><li>bench restart<\/li><\/ul>\n\n\n\n<p>Here, you will need to open the 0.0.0.0 or server IP in the web browser and login to the production server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Moving Forward<\/h2>\n\n\n\n<p>Hopefully, now you have a broader level of understanding as to how you can install ERPNext and get it up and running within the span of a few minutes. The procedure itself is quite simple but requires the installation of a lot of software packages as well as configuration files.<\/p>\n\n\n\n<p>With the right time, effort, and dedication, anyone can install ERPNext with ease. For extra help, Guru\u2019s freelancer ERPNext experts are ready to help today!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. In fact, ERPNext comes with over 1000 objects that business owners can utilize as a means of enhancing their overall workflows. This includes financial accounting, order management, Human Resources and Payroll, manufacturing, and CRM. If you\u2019re having trouble with<\/p>\n","protected":false},"author":14,"featured_media":16475,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26,437],"tags":[570],"class_list":{"0":"post-16394","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-employer","8":"category-resources","9":"tag-erpnext"},"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 ERPNext - Guru Blog<\/title>\n<meta name=\"description\" content=\"ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install ERPNext - Guru Blog\" \/>\n<meta property=\"og:description\" content=\"ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-28T16:23:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-28T16:26:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Guru Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Guru Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/\"},\"author\":{\"name\":\"Guru Staff\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/#\\\/schema\\\/person\\\/1b9e9d9f55a3fcafaed8640391114a55\"},\"headline\":\"How to Install ERPNext\",\"datePublished\":\"2022-09-28T16:23:20+00:00\",\"dateModified\":\"2022-09-28T16:26:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/\"},\"wordCount\":715,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/install-erpnext.jpg\",\"keywords\":[\"ERPNext\"],\"articleSection\":[\"Employer\",\"Resources\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/\",\"url\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/\",\"name\":\"How to Install ERPNext - Guru Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/install-erpnext.jpg\",\"datePublished\":\"2022-09-28T16:23:20+00:00\",\"dateModified\":\"2022-09-28T16:26:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/#\\\/schema\\\/person\\\/1b9e9d9f55a3fcafaed8640391114a55\"},\"description\":\"ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#primaryimage\",\"url\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/install-erpnext.jpg\",\"contentUrl\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/install-erpnext.jpg\",\"width\":2400,\"height\":1600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/how-to-install-erpnext\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install ERPNext\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Helping you work Your Way - Guru Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/#\\\/schema\\\/person\\\/1b9e9d9f55a3fcafaed8640391114a55\",\"name\":\"Guru Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/177f4420872955784327af85d8264ba2e072d910fbf91a394fd4403f42fc1757?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/177f4420872955784327af85d8264ba2e072d910fbf91a394fd4403f42fc1757?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/177f4420872955784327af85d8264ba2e072d910fbf91a394fd4403f42fc1757?s=96&d=mm&r=g\",\"caption\":\"Guru Staff\"},\"url\":\"https:\\\/\\\/qa-wp.guru.com\\\/blog\\\/author\\\/gurustaff\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install ERPNext - Guru Blog","description":"ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.","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:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/","og_locale":"en_US","og_type":"article","og_title":"How to Install ERPNext - Guru Blog","og_description":"ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.","og_url":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/","article_published_time":"2022-09-28T16:23:20+00:00","article_modified_time":"2022-09-28T16:26:29+00:00","og_image":[{"width":2400,"height":1600,"url":"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg","type":"image\/jpeg"}],"author":"Guru Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Guru Staff","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#article","isPartOf":{"@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/"},"author":{"name":"Guru Staff","@id":"https:\/\/qa-wp.guru.com\/blog\/#\/schema\/person\/1b9e9d9f55a3fcafaed8640391114a55"},"headline":"How to Install ERPNext","datePublished":"2022-09-28T16:23:20+00:00","dateModified":"2022-09-28T16:26:29+00:00","mainEntityOfPage":{"@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/"},"wordCount":715,"commentCount":0,"image":{"@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#primaryimage"},"thumbnailUrl":"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg","keywords":["ERPNext"],"articleSection":["Employer","Resources"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/","url":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/","name":"How to Install ERPNext - Guru Blog","isPartOf":{"@id":"https:\/\/qa-wp.guru.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#primaryimage"},"image":{"@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#primaryimage"},"thumbnailUrl":"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg","datePublished":"2022-09-28T16:23:20+00:00","dateModified":"2022-09-28T16:26:29+00:00","author":{"@id":"https:\/\/qa-wp.guru.com\/blog\/#\/schema\/person\/1b9e9d9f55a3fcafaed8640391114a55"},"description":"ERPNext is an open-source enterprise resource planning (ERP) software that supports a variety of different functionalities. If you have ever been curious about trying out and utilizing ERPNext, today, we are going to go over everything you need to know to install it properly.","breadcrumb":{"@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#primaryimage","url":"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg","contentUrl":"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg","width":2400,"height":1600},{"@type":"BreadcrumbList","@id":"https:\/\/qa-wp.guru.com\/blog\/how-to-install-erpnext\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/qa-wp.guru.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install ERPNext"}]},{"@type":"WebSite","@id":"https:\/\/qa-wp.guru.com\/blog\/#website","url":"https:\/\/qa-wp.guru.com\/blog\/","name":"","description":"Helping you work Your Way - Guru Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/qa-wp.guru.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/qa-wp.guru.com\/blog\/#\/schema\/person\/1b9e9d9f55a3fcafaed8640391114a55","name":"Guru Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/177f4420872955784327af85d8264ba2e072d910fbf91a394fd4403f42fc1757?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/177f4420872955784327af85d8264ba2e072d910fbf91a394fd4403f42fc1757?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/177f4420872955784327af85d8264ba2e072d910fbf91a394fd4403f42fc1757?s=96&d=mm&r=g","caption":"Guru Staff"},"url":"https:\/\/qa-wp.guru.com\/blog\/author\/gurustaff\/"}]}},"jetpack_featured_media_url":"https:\/\/qa-wp.guru.com\/blog\/wp-content\/uploads\/2022\/10\/install-erpnext.jpg","_links":{"self":[{"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/posts\/16394","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/comments?post=16394"}],"version-history":[{"count":2,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/posts\/16394\/revisions"}],"predecessor-version":[{"id":16399,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/posts\/16394\/revisions\/16399"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/media\/16475"}],"wp:attachment":[{"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/media?parent=16394"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/categories?post=16394"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/qa-wp.guru.com\/blog\/wp-json\/wp\/v2\/tags?post=16394"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}