{"id":1225,"date":"2020-04-23T10:25:29","date_gmt":"2020-04-23T15:25:29","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1225"},"modified":"2020-04-23T10:25:29","modified_gmt":"2020-04-23T15:25:29","slug":"how-to-install-django-on-debian-9","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/","title":{"rendered":"How to Install Django on Debian 9"},"content":{"rendered":"<p>In this tutorial, we&#8217;ll be showing you how to install Django on your <a href=\"http:\/\/linuxcloudvps.com\/cloud-vps.html\">Debian Cloud VPS.<\/a><\/p>\n<p>There is a very good reason why Django is the top Python web development framework. It is powerful, flexible, and at the same time, it does not get in the developers&#8217; way. It scales very well too, powering sites such as Instagram.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1230\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/set-up-django-python-development-environment-debian9-cloud-vps.jpg\" alt=\"\" width=\"120\" height=\"68\" \/>It is quite simple to install a Django development environment on Linux, and Debian makes it that much more simple. You can go with two different methods of installation: the virtualenv way, and the Debian way. The virtualenv way keeps all Python packages, including Django, installed with it contained, and that allows multiple installations with different packages and their versions. For installation and management of Django the Debian way uses\u00a0\u00a0<code>apt<\/code>, which can be considered as the more user-friendly method. In this tutorial, however, we&#8217;ll be covering both methods. Let&#8217;s get started with the installation.<\/p>\n<p><!--more--><\/p>\n<h2>Available Installation Methods<\/h2>\n<p>Depending upon your needs and the manner you want to configure your development environment, there are several ways in which you can install Django. If you need more independent Django installs or you want to work with Python versions which are different than the ones used by Debian by default, then the virtualenv route is the best way to go. Let&#8217;s show you how to do that now.<\/p>\n<h2>Method 1: The Virtualenv Way<\/h2>\n<h3>Step 1. Installing the Packages<\/h3>\n<p>For starters, you have to make sure that the Python is installed and then install the <code>virtualenv<\/code> package\u00a0to compartmentalize your Python projects.<\/p>\n<pre># apt install python python3 virtualenv<\/pre>\n<h3>Step 2. Setting Up Virtualenv<\/h3>\n<p>You can use virtualenv in order to create a new virtual environment for the Python project after the installation of the packages has finished.<\/p>\n<pre>$ virtualenv -p python3 django-project<\/pre>\n<p>With the command above, you will prompt virtualenv to create a new virtual environment using the current Python 3 version which is installed on the system. If the\u00a0<code>-p python3<\/code> part is left off, then the current system default will be used by virtualenv, which is version 2.7 on Debian Stretch.<\/p>\n<p>In order to use the new virtual environment,\u00a0<code>cd<\/code> into the folder and activate it.<\/p>\n<pre># cd django-project\r\n# source bin\/activate\r\n<\/pre>\n<p>At the beginning of your prompt, you will be able to see the folder&#8217;s name in parenthesis. After you finish using the virtual environment, then you can exit\u00a0by typing <code>deactivate<\/code>.<\/p>\n<h2>Method 2: The Debian Way<\/h2>\n<p>Another way of doing things that usually works well is the Debian way. If you are more into a system-wide Django install, then you should definitely use the packaged version of Django, which is available from Debian&#8217;s repositories.<\/p>\n<h3 id=\"h3-1-installing-the-packages\">Step 1. Installing the Packages<\/h3>\n<p>This way of installing Django is quite simple. All you need to do is to install the packages.<\/p>\n<pre># apt install python python3 python-django<\/pre>\n<h2>Setting Up Django<\/h2>\n<p>At this point when your virtual environment has been set up and activated, Django can be installed. Virtualenv will automatically add the Python package manager\u00a0<code>pip<\/code> to each environment that gets created. This Python package manager acts just like other package managers &#8211; it handles installs, removals, and updates. Due to the fact that you are using virtualenv, the packages that pip manages are specific to that one environment.<\/p>\n<p>You can use pip to install Django just by telling it to install.<\/p>\n<pre># pip install django<\/pre>\n<p>Pip will handle dependency management and pull in Django. Once again, don`t forget that it only applies to that environment.<\/p>\n<p>If you are interested in creating your new project, in that case you can use Django&#8217;s built-in utilities.<\/p>\n<pre># django-admin.py startproject yoursite<\/pre>\n<p>The base project files will be created by Django and they will have a name which is specified by you. At this point you are able to\u00a0<code>cd<\/code> into your new Django project. While you&#8217;re there, don&#8217;t forget to set up the database. You can do that by applying the basic migrations and creating your user.<\/p>\n<pre># cd yoursite\r\n# python manage.py migrate\r\n# python manage.py createsuperuser\r\n<\/pre>\n<p>You will have to enter the information for your site&#8217;s admin user. You can fill it out as you like.<\/p>\n<p>You will be asked to enter the information for your site&#8217;s admin user. Fill it out however you&#8217;d like. This information will be entered into the development database, so it&#8217;s not such a big deal, unless you plan to import it into your production one.<\/p>\n<p>Now your new Django project can be tested. In order to start up the development server use <code>manage.py<\/code> one more time.<\/p>\n<pre># python manage.py runserver<\/pre>\n<p>You can use\u00a0\u00a0<code>localhost:8000<\/code>\u00a0 to view the static start page in your browser. That&#8217;s it! You have successfully installed and set up Django on your Debian 9 Cloud VPS.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1231\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/django-python-support-managed-by-experts-for-debian-cloud-vps.jpg\" alt=\"\" width=\"120\" height=\"68\" \/>Of course, you don\u2019t have to\u00a0Install Django on Debian 9 if you use one of our <a href=\"http:\/\/linuxcloudvps.com\/cloud-vps.html\">Django Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install Django on your Debian VPS for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong>PS.<\/strong> If you liked this post on how to install Django on Debian 9,\u00a0 please share it with your friends on the social networks using the buttons below or simply leave a reply in the comments sections. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we&#8217;ll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web development framework. It is powerful, flexible, and at the same time, it does not get in the developers&#8217; way. It scales very well too, powering sites &#8230; <a title=\"How to Install Django on Debian 9\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/\" aria-label=\"More on How to Install Django on Debian 9\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1229,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[110,175],"class_list":["post-1225","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian","tag-django"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Django on Debian 9 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we&#039;ll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Django on Debian 9 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we&#039;ll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-23T15:25:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-django-on-debian9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\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=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Django on Debian 9\",\"datePublished\":\"2020-04-23T15:25:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/\"},\"wordCount\":836,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-django-on-debian9.jpg\",\"keywords\":[\"debian\",\"django\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/\",\"name\":\"How to Install Django on Debian 9 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-django-on-debian9.jpg\",\"datePublished\":\"2020-04-23T15:25:29+00:00\",\"description\":\"In this tutorial, we'll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-django-on-debian9.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/how-to-install-django-on-debian9.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-django-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Django on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Django on Debian 9 | LinuxCloudVPS Blog","description":"In this tutorial, we'll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web","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:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Django on Debian 9 | LinuxCloudVPS Blog","og_description":"In this tutorial, we'll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2020-04-23T15:25:29+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-django-on-debian9.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Django on Debian 9","datePublished":"2020-04-23T15:25:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/"},"wordCount":836,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-django-on-debian9.jpg","keywords":["debian","django"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/","name":"How to Install Django on Debian 9 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-django-on-debian9.jpg","datePublished":"2020-04-23T15:25:29+00:00","description":"In this tutorial, we'll be showing you how to install Django on your Debian Cloud VPS. There is a very good reason why Django is the top Python web","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-django-on-debian9.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-django-on-debian9.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-django-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Django on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1225","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1225"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1225\/revisions"}],"predecessor-version":[{"id":1233,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1225\/revisions\/1233"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1229"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1225"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1225"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}