{"id":9423,"date":"2020-05-09T13:41:39","date_gmt":"2020-05-09T13:41:39","guid":{"rendered":"https:\/\/www.milesweb.in\/hosting-faqs\/?p=9423"},"modified":"2020-05-09T13:41:39","modified_gmt":"2020-05-09T13:41:39","slug":"installing-pip-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/","title":{"rendered":"Installing PIP on Ubuntu 18.04"},"content":{"rendered":"<p>This article includes steps to install PIP on Ubuntu 18.04.<\/p>\n<h2>Prerequisite :<\/h2>\n<p>Commands mentioned in this article are for Ubuntu 18.04 LTS server. We have logged in as a root user.<\/p>\n<p>First of all, we need t to verify that the Python is installed :<\/p>\n<p>Run the following command, to <strong>verify that Python is installed<\/strong> on your server :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# python\r\n\r\nPython 3.6.8 (default, Jan 14 2019, 11:02:34)\r\n\r\n[GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux\r\n\r\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\r\n\r\n&gt;&gt;&gt;<\/pre>\n<p>This command checks the Python version and also verifies if Python 3 is installed on your Ubuntu system.<\/p>\n<p>Type <strong>Ctrl+C<\/strong> to exit the Python shell.<\/p>\n<h2># Install PIP<\/h2>\n<p>Start updating Ubuntu<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# apt update<\/pre>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# python3 --version\r\n\r\nPython 3.7.5<\/pre>\n<p>Then, install PIP.<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# apt install python3-pip\r\n\r\n...\u00a0\r\n\r\n...\r\n\r\n...\r\n\r\nAfter this operation, 129 MB of additional disk space will be used.\r\n\r\nDo you want to continue? [Y\/n] Y\r\n\r\n...\r\n\r\n...\r\n\r\n...\r\n\r\nSetting up python3.6-dev (3.6.8-1~18.04.3) ...\r\n\r\nSetting up libpython3-dev:amd64 (3.6.7-1~18.04) ...\r\n\r\nSetting up build-essential (12.4ubuntu1) ...\r\n\r\nSetting up python3-dev (3.6.7-1~18.04) ...\r\n\r\nProcessing triggers for man-db (2.8.3-2ubuntu0.1) ...\r\n\r\nProcessing triggers for libc-bin (2.27-3ubuntu1) ...\r\n\r\nroot@host:~#<\/pre>\n<p>Now, check the version of your installed PIP, using the following command.<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# pip3 --version\r\n\r\npip 9.0.1 from \/usr\/lib\/python3\/dist-packages (python 3.6)<\/pre>\n<h2>#Using cases<\/h2>\n<p>We have several options to use PIP.<\/p>\n<p>Either we can stay within a virtual environment and test our programs within a distinct or virtual Python environment. Or, we can also run PIP globally, this can make a program to run on the server itself.<\/p>\n<p>In this example, we are going to work on our projects within the virtual Python environment (by using venv) so that it will limit the interaction with other projects for their dependencies. Additionally, it will also avoid a huge conflict that can take place with the system\u2019s default Python environment. We run the following code, to display all the available options for PIP :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# pip3 --help\r\n\r\nUsage:\r\n\r\n\u00a0 \u00a0 pip3 &lt;command&gt; [options]\r\n\r\nCommands:\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 install\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Install packages.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0download\u00a0 \u00a0 \u00a0 Download packages.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0uninstall\u00a0 \u00a0 \u00a0 \u00a0 Uninstall packages.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 freeze\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Output installed packages in requirements format.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0list\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0List installed packages.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0show\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Show information about installed packages.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 check\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Verify installed packages have compatible dependencies.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 search\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Search PyPI for packages.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0wheel\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Build wheels from your requirements.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0hash\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Compute hashes of package archives.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 completion\u00a0 \u00a0 \u00a0 \u00a0 A helper command used for command completion.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0help\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Show help for commands.\r\n\r\nGeneral Options:\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0-h, --help\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Show help.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0--isolated\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Run pip in an isolated mode, ignoring environment variables and user configuration.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 -v, --verbose\u00a0 \u00a0 \u00a0 \u00a0 Give more output.\u00a0 Option is additive, and can be used up to 3 times.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0-V, --version\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Show version and exit.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0-q, --quiet\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING, ERROR, and CRITICAL logging levels).\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0--log &lt;path&gt;\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Path to a verbose appending log.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 --proxy &lt;proxy&gt;\u00a0 \u00a0 \u00a0 \u00a0 Specify a proxy in the form [user:passwd@]proxy.server:port.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--retries &lt;retries&gt;\u00a0 \u00a0 \u00a0 \u00a0 Maximum number of retries each connection should attempt (default 5 times).\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--timeout &lt;sec&gt;\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Set the socket timeout (default 15 seconds).\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--exists-action &lt;action&gt;\u00a0 \u00a0 Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--trusted-host &lt;hostname&gt;\u00a0 \u00a0 \u00a0 Mark this host as trusted, even though it does not have valid or any HTTPS.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--cert &lt;path&gt;\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 Path to alternate CA bundle.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--client-cert &lt;path&gt;\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Path to SSL client certificate, a single file containing the private key and the certificate in PEM format.\r\n\r\n\u00a0 \u00a0 \u00a0 --cache-dir &lt;dir&gt;\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Store the cache data in &lt;dir&gt;.\r\n\r\n\u00a0 \u00a0 \u00a0 \u00a0--no-cache-dir\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Disable the cache.\r\n\r\n--disable-pip-version-check \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Don't periodically check PyPI to determine whether a new version of pip is available for download. \r\n\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0Implied with --no-index.\r\n\r\n<\/pre>\n<p>Use <strong>pip \u2013help<\/strong> to get more information about a specific PIP.<\/p>\n<p>As an example, to get more information about the install command, type following command :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# pip3 install --help<\/pre>\n<p>Use the following command, to search for a specific package :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">root@host:~# pip3 search &lt;search_string&gt;\r\n\r\nroot@host:~# pip3 search pypi\r\n\r\ngo-pypi (0.0.4)\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 - Go pypi\r\n\r\npypi-api (0)\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 - pypi-api\r\n\r\nupt-pypi (0.5)\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0- PyPI frontend for upt\r\n\r\npypi-chat (0.0.4)\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 - A project of pypi chat.\r\n\r\npypi-xmlrpc (2019.4.13)\u00a0 \u00a0 \u00a0- pypi XML-RPC\r\n\r\nFlask-Pypi-Proxy (0.5.1)\u00a0 \u00a0 \u00a0- A Pypi proxy\r\n\r\npypi-task-demo (0.0.1)\u00a0 \u00a0 \u00a0 \u00a0- PyPI demo\r\n\r\npypi-test-fiveplus (0.0.2)\u00a0 \u00a0- PyPI Test\r\n\r\nhello-pypi-yue (0.1.1)\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 - The Pypi test\r\n\r\naeverall-testing-pypi (0.1)\u00a0 \u00a0 - Test of PyPI<\/pre>\n<p>Use the following command, to <strong>see all the installed packages<\/strong> :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">pip3 search installed package<\/pre>\n<p>Usually, the output shows a significant number of packages.<\/p>\n<p>Use the following command, to<strong> install a package using PIP<\/strong> :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">pip3 install &lt;package_name&gt;<\/pre>\n<p>Run following command, to<strong> uninstall a package using PIP<\/strong> :<\/p>\n<pre class=\"trim-whitespace:false lang:default decode:true \">pip3 uninstall &lt;installed_package_name&gt;<\/pre>\n<p>That&#8217;s it.<\/p>\n<p><strong>Also Read :<\/strong><\/p>\n<p><strong>1)\u00a0<a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-16-04-lts\/\" target=\"_blank\" rel=\"noopener\">Installing Pip on Ubuntu 16.04 LTS<\/a><\/strong><\/p>\n<p><strong>2)\u00a0<a href=\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-list-and-filter-users-in-linux\/\" target=\"_blank\" rel=\"noopener\">How to List and Filter Users in Linux<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This article includes steps to install PIP on Ubuntu 18.04. Prerequisite : Commands mentioned in this article are for Ubuntu 18.04 LTS server. We have logged in as a root user. First of all, we need t to verify that the Python is installed : Run the following command, to verify that Python is installed [&hellip;]<\/p>\n","protected":false},"author":18,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[1025,1437,952,1430,637,925,1438],"class_list":["post-9423","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-web-hosting-faq","tag-pip","tag-pip-3","tag-python","tag-python-pip","tag-ubuntu","tag-ubuntu-18-04","tag-uninstall-ubuntu-on-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing PIP on Ubuntu 18.04 - Web Hosting FAQs by MilesWeb<\/title>\n<meta name=\"description\" content=\"An easy step b step guide on how to install PIP on Ubuntu 18.04.\" \/>\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.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing PIP on Ubuntu 18.04 - Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"og:description\" content=\"An easy step b step guide on how to install PIP on Ubuntu 18.04.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-09T13:41:39+00:00\" \/>\n<meta name=\"author\" content=\"Sonam Wagh\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sonam Wagh\" \/>\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.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\"},\"author\":{\"name\":\"Sonam Wagh\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/dc645d02823c86e07e53798ebe02c6f4\"},\"headline\":\"Installing PIP on Ubuntu 18.04\",\"datePublished\":\"2020-05-09T13:41:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\"},\"wordCount\":304,\"commentCount\":0,\"keywords\":[\"PIP\",\"PIP 3\",\"Python\",\"Python-PIP\",\"Ubuntu\",\"Ubuntu 18.04\",\"uninstall Ubuntu on Python\"],\"articleSection\":[\"Web Hosting FAQ\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\",\"name\":\"Installing PIP on Ubuntu 18.04 - Web Hosting FAQs by MilesWeb\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\"},\"datePublished\":\"2020-05-09T13:41:39+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/dc645d02823c86e07e53798ebe02c6f4\"},\"description\":\"An easy step b step guide on how to install PIP on Ubuntu 18.04.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing PIP on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/dc645d02823c86e07e53798ebe02c6f4\",\"name\":\"Sonam Wagh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2019\/12\/Sonam-Wagh-150x150.jpg\",\"contentUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2019\/12\/Sonam-Wagh-150x150.jpg\",\"caption\":\"Sonam Wagh\"},\"description\":\"With an interest in doing something creative daily, Sonam works as a Digital Marketing Executive. She likes to write technical blogs related to web hosting, digital marketing, and other IT topics. She also likes to spend her leisure time on social media to find different strategies for client engagement.\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/author\/sonam\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing PIP on Ubuntu 18.04 - Web Hosting FAQs by MilesWeb","description":"An easy step b step guide on how to install PIP on Ubuntu 18.04.","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.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"Installing PIP on Ubuntu 18.04 - Web Hosting FAQs by MilesWeb","og_description":"An easy step b step guide on how to install PIP on Ubuntu 18.04.","og_url":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2020-05-09T13:41:39+00:00","author":"Sonam Wagh","twitter_misc":{"Written by":"Sonam Wagh","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/"},"author":{"name":"Sonam Wagh","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/dc645d02823c86e07e53798ebe02c6f4"},"headline":"Installing PIP on Ubuntu 18.04","datePublished":"2020-05-09T13:41:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/"},"wordCount":304,"commentCount":0,"keywords":["PIP","PIP 3","Python","Python-PIP","Ubuntu","Ubuntu 18.04","uninstall Ubuntu on Python"],"articleSection":["Web Hosting FAQ"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/","name":"Installing PIP on Ubuntu 18.04 - Web Hosting FAQs by MilesWeb","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website"},"datePublished":"2020-05-09T13:41:39+00:00","author":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/dc645d02823c86e07e53798ebe02c6f4"},"description":"An easy step b step guide on how to install PIP on Ubuntu 18.04.","breadcrumb":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/installing-pip-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.in\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"Installing PIP on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.in\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/dc645d02823c86e07e53798ebe02c6f4","name":"Sonam Wagh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2019\/12\/Sonam-Wagh-150x150.jpg","contentUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2019\/12\/Sonam-Wagh-150x150.jpg","caption":"Sonam Wagh"},"description":"With an interest in doing something creative daily, Sonam works as a Digital Marketing Executive. She likes to write technical blogs related to web hosting, digital marketing, and other IT topics. She also likes to spend her leisure time on social media to find different strategies for client engagement.","url":"https:\/\/www.milesweb.in\/hosting-faqs\/author\/sonam\/"}]}},"_links":{"self":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/9423","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/users\/18"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=9423"}],"version-history":[{"count":2,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/9423\/revisions"}],"predecessor-version":[{"id":9425,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/9423\/revisions\/9425"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=9423"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=9423"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=9423"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}