{"id":536,"date":"2018-05-02T03:24:28","date_gmt":"2018-05-02T08:24:28","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=536"},"modified":"2018-05-02T11:02:52","modified_gmt":"2018-05-02T16:02:52","slug":"how-to-install-or-upgrade-django-using-pip","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/","title":{"rendered":"How to Install or Upgrade Django Using Pip"},"content":{"rendered":"<div id=\"linux-2955070367\" 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>We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the model-view-template (MVC) architectural pattern. Django is build by experienced web developers and encourages rapid development and clean, pragmatic design. Using Django, you can develop full fledged database-driven websites in Python. The framework takes care of advanced tasks like user authentication, content administration, sitemaps etc. Moreover, you can use clean and elegant URL scheme for your web application. Django is one of the most popular web server frameworks and in this tutorial we are going to show you how to install or upgrade Django using pip on a Linux VPS.<\/p>\n<p><!--more--><\/p>\n<h3>Prerequisites for Django<\/h3>\n<p>Django requires Python, so in order to be able to run Django on your server, you need to install Python on your server. Python 3 is recommended. Also, you can use MySQL\/MariaDB, PostgreSQL or SQLite as a database engine along with Django to store the data.<\/p>\n<h3>Connect to your Linux server via SSH<\/h3>\n<p>To install or update Django using pip you need to have SSH access to the server. Connect to your server via SSH and make sure you have Python installed on your server:<\/p>\n<pre>python -V<\/pre>\n<p>Or if you are willing to use Python 3 for your Django project<\/p>\n<pre>python3 -V<\/pre>\n<h3>Install Django on a Linux VPS<\/h3>\n<p>First of all, you have to install pip on your server. To install pip on an Ubuntu 16.04 VPS, run the following commands:<\/p>\n<pre>apt-get update<\/pre>\n<pre>apt-get install python3-pip<\/pre>\n<p>CentOS 7 comes with Python 3.4 by default, so to install pip on CentOS 7 VPS, run the following command:<\/p>\n<pre>yum install python34-pip<\/pre>\n<p>In case you already have pip installed on your Linux server, you can upgrade it using the following commands:<\/p>\n<p>On Ubuntu 16.04, run the following command:<\/p>\n<pre>pip3 install --upgrade pip<\/pre>\n<p>On CentOS 7, run the following command:<\/p>\n<pre>pip3.4 install --upgrade pip<\/pre>\n<p>Next step is to install and set up the Python Django package:<\/p>\n<p>On Ubuntu 16.04, run the following command:<\/p>\n<pre>pip3 install django<\/pre>\n<p>On CentOS 7, run the following command:<\/p>\n<pre>pip3.4 install django<\/pre>\n<p>Now you have the Django package installed on your server. You can start a new Django project using the <code>django-admin<\/code> command. For example:<\/p>\n<pre>django-admin startproject newapp<\/pre>\n<p>The command will generate new Django application called <code>newapp<\/code> which you can use for your next project. For more information about how to get started with Django it is recommended to refer to the <a href=\"https:\/\/docs.djangoproject.com\/en\/2.0\/\" target=\"_blank\" rel=\"noopener\">official Django documentation<\/a>.<\/p>\n<h3>Update Django using pip on a Linux VPS<\/h3>\n<p>First, you should determine the Django version which is currently installed on your server.<\/p>\n<p>On Ubuntu 16.04, run the following command:<\/p>\n<pre>pip3 list | grep -i django<\/pre>\n<p>On CentOS 7, run the following command:<\/p>\n<pre>pip3.4 list | grep -i django<\/pre>\n<p>If you want to update the Django package using pip on your Linux server you can use the following commands:<\/p>\n<p>On Ubuntu 16.04:<\/p>\n<pre>pip3 install --upgrade django<\/pre>\n<p>On CentOS 7:<\/p>\n<pre>pip3.4 install --upgrade django<\/pre>\n<p>Also, pip allows you to install specific Django version. You can do so by specifying the Django version while installing\/upgrading the package. For example, to install Django 1.11.12 which is the latest release from the 1.11 LTS release, you can do the following:<\/p>\n<p>On Ubuntu 16.04, run the following command:<\/p>\n<pre>pip3 install django==1.11.12<\/pre>\n<p>or if you are upgrading to that version, run the following command:<\/p>\n<pre>pip3 install --upgrade django==1.11.12<\/pre>\n<p>On CentOS 7, run the following command:<\/p>\n<pre>pip3.4 install django==1.11.12<\/pre>\n<p>or if you are upgrading to that version, run the following command:<\/p>\n<pre>pip3.4 install --upgrade django==1.11.12<\/pre>\n<p>As you can see, installing and upgrading Django using pip on a Linux server is a very easy task. You have to install Python and pip on the server and then install the Django package which will allow you to use the <code>django-admin<\/code> command to start new Django projects. If you wish to uninstall the Django package completely, you can use the following commands:<\/p>\n<p>On Ubuntu 16.04, run the following command:<\/p>\n<pre>pip3 uninstall django<\/pre>\n<p>On CentOS 7, run the following command:<\/p>\n<pre>pip3.4 uninstall django<\/pre>\n<p>This will not remove any of your existing projects. It will only remove the Django package installed by pip.<\/p>\n<p>Of course, you don\u2019t have to install or upgrade Django using pip on a Linux VPS, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Support Services<\/a>, in which case you can simply ask our expert Linux admins to install or upgrade Django using pip for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS. If you liked this post on how to install or upgrade Django using pip on a Linux VPS, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-1751597139\" 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>We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the model-view-template (MVC) architectural pattern. Django is build by experienced web developers and encourages rapid development and clean, pragmatic design. Using Django, you can develop full [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":537,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[94,12],"class_list":["post-536","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-django","tag-pip"],"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 or Upgrade Django Using Pip | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the\" \/>\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-or-upgrade-django-using-pip\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install or Upgrade Django Using Pip | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/\" \/>\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=\"2018-05-02T08:24:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-05-02T16:02:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\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=\"4 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-or-upgrade-django-using-pip\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install or Upgrade Django Using Pip\",\"datePublished\":\"2018-05-02T08:24:28+00:00\",\"dateModified\":\"2018-05-02T16:02:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/\"},\"wordCount\":714,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg\",\"keywords\":[\"django\",\"pip\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/\",\"name\":\"How to Install or Upgrade Django Using Pip | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg\",\"datePublished\":\"2018-05-02T08:24:28+00:00\",\"dateModified\":\"2018-05-02T16:02:52+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install or Upgrade Django Using Pip\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-or-upgrade-django-using-pip\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install or Upgrade Django Using Pip\"}]},{\"@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 or Upgrade Django Using Pip | LinuxHostSupport","description":"We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the","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-or-upgrade-django-using-pip\/","og_locale":"en_US","og_type":"article","og_title":"How to Install or Upgrade Django Using Pip | LinuxHostSupport","og_description":"We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-05-02T08:24:28+00:00","article_modified_time":"2018-05-02T16:02:52+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-or-Upgrade-Django-Using-Pip.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install or Upgrade Django Using Pip","datePublished":"2018-05-02T08:24:28+00:00","dateModified":"2018-05-02T16:02:52+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/"},"wordCount":714,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg","keywords":["django","pip"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/","name":"How to Install or Upgrade Django Using Pip | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg","datePublished":"2018-05-02T08:24:28+00:00","dateModified":"2018-05-02T16:02:52+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We will show you how to install or upgrade Django using pip on a Linux VPS. Django is a free and open-source web framework based on Python and follows the","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/05\/How-to-Install-or-Upgrade-Django-Using-Pip.jpg","width":750,"height":410,"caption":"How to Install or Upgrade Django Using Pip"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-or-upgrade-django-using-pip\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install or Upgrade Django Using Pip"}]},{"@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\/536","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=536"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/536\/revisions"}],"predecessor-version":[{"id":539,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/536\/revisions\/539"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/537"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=536"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=536"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=536"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}