{"id":680,"date":"2020-10-20T01:26:45","date_gmt":"2020-10-20T01:26:45","guid":{"rendered":"https:\/\/www.pythontutorial.net\/?page_id=680"},"modified":"2025-03-30T09:33:12","modified_gmt":"2025-03-30T09:33:12","slug":"python-pip","status":"publish","type":"page","link":"https:\/\/www.pythontutorial.net\/python-basics\/python-pip\/","title":{"rendered":"Python pip"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you&#8217;ll learn about Python pip and how to use it to manage third-party packages.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='introduction-to-python-package-index-pypi'>Introduction to Python package index (PyPI) <a href=\"#introduction-to-python-package-index-pypi\" class=\"anchor\" id=\"introduction-to-python-package-index-pypi\" title=\"Anchor for Introduction to Python package index (PyPI)\">#<\/a><\/h2>\n\n\n\n<p>Python has a rich standard library that you can use immediately in your project. In case you need a package that isn&#8217;t available in the standard library, you can find it on the <a href=\"https:\/\/pypi.org\/\">Python Package Index<\/a>.<\/p>\n\n\n\n<p>The Python Package Index (PyPI) is the largest Python repository. It contains many Python packages developed and maintained by the Python community.<\/p>\n\n\n\n<p>To find a package, you can use the search box. For example, to search packages that deal with HTTP requests, you can simply use the <code>requests<\/code> keyword.<\/p>\n\n\n\n<p>The search results will show many packages. To find detailed information about each package, you can click the corresponding link.<\/p>\n\n\n\n<p>Let&#8217;s examine the <a href=\"https:\/\/pypi.org\/project\/requests\/\">requests package<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='package-version'>Package version <a href=\"#package-version\" class=\"anchor\" id=\"package-version\" title=\"Anchor for Package version\">#<\/a><\/h3>\n\n\n\n<p>Python packages use semantic versioning which consists of three-part version numbers: major version, minor version, and patch:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">major<\/span><span class=\"hljs-selector-class\">.minor<\/span><span class=\"hljs-selector-class\">.patch<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The patch number is incremented for minor changes and bug fixes that don&#8217;t change the way the package works.<\/p>\n\n\n\n<p>The minor version is also incremented for releases that add new features that are backward-compatible.<\/p>\n\n\n\n<p>The major version is incremented for the changes which are not backward compatible.<\/p>\n\n\n\n<p>For example, the <code>requests<\/code> package has version 2.24.0 (at the time of this writing). It has the major version is 2, the minor version is 24, and the patch is zero.<\/p>\n\n\n\n<p>If you use the version <code>requests<\/code> version 2.24.0 in your project, you can upgrade it to any version that has the major version 2, for example, 2.25.1.<\/p>\n\n\n\n<p>If you install a package with a higher major version e.g., 3.0.0, your application may not work correctly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='what-is-pip'>What is pip <a href=\"#what-is-pip\" class=\"anchor\" id=\"what-is-pip\" title=\"Anchor for What is pip\">#<\/a><\/h2>\n\n\n\n<p>To download the package, you use the command described in the module:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">pip install requests<\/code><\/span><\/pre>\n\n\n<p>But what is pip? <\/p>\n\n\n\n<p>pip is the package installer for Python. Pip allows you to install packages from PyPI and other repositories.<\/p>\n\n\n\n<p>Python comes with <code>pip<\/code> by default. To check if <code>pip<\/code> is available on your computer, you can open the Command Prompt (or Powershell) on Windows and type the following command:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">pip --version<\/code><\/span><\/pre>\n\n\n<p>It&#8217;ll show something like this:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">pip<\/span> 25<span class=\"hljs-selector-class\">.0<\/span><span class=\"hljs-selector-class\">.1<\/span> <span class=\"hljs-selector-tag\">from<\/span> <span class=\"hljs-selector-tag\">C<\/span>:\\<span class=\"hljs-selector-tag\">python<\/span>\\<span class=\"hljs-selector-tag\">Lib<\/span>\\<span class=\"hljs-selector-tag\">site-packages<\/span>\\<span class=\"hljs-selector-tag\">pip<\/span> (<span class=\"hljs-selector-tag\">python<\/span> 3<span class=\"hljs-selector-class\">.13<\/span>)<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>&#8230;where 25.0.1 is the version and <code>C:\\python\\Lib\\site-packages\\pip<\/code> is the location of pip.<\/p>\n\n\n\n<p>If you use macOS or Linux, you can launch the terminal and use the <code>pip3<\/code> instead of <code>pip<\/code> :<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">pip3 --version<\/code><\/span><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='install-a-package'>Install a package <a href=\"#install-a-package\" class=\"anchor\" id=\"install-a-package\" title=\"Anchor for Install a package\">#<\/a><\/h3>\n\n\n\n<p>To install a package from PyPI, you use the following command on Windows:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml\">pip install <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">package_name<\/span>&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>And change <code>pip<\/code> to <code>pip3<\/code> on macOS and Linux:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml\">pip3 install <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">package_name<\/span>&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>For example, the following command installs the <code>requests<\/code> package:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">pip install requests<\/code><\/span><\/pre>\n\n\n<p>From now on, you can use the <code>requests<\/code> package in any project. For example, you can create a new project called <code>pip-demo<\/code> and use the <code>requests<\/code> package. <\/p>\n\n\n\n<p>The following code uses the <code>requests<\/code> package to make an HTTP request to the <code>https:\/\/pypi.org\/<\/code> and displays the HTTP status code:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Python\" data-shcb-language-slug=\"python\"><span><code class=\"hljs language-python\"><span class=\"hljs-keyword\">import<\/span> requests\n\nresponse = requests.get(<span class=\"hljs-string\">'https:\/\/pypi.org\/'<\/span>)\nprint(response.status_code)<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Python<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">python<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">200<\/code><\/span><\/pre>\n\n\n<p>To install a package with a specific version, you use the following command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml\">pip install <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">package_name<\/span>&gt;<\/span>==<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">version<\/span>&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The following command installs the <code>requests<\/code> package version 2.20.1:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">pip install requests==2.20.1<\/code><\/span><\/pre>\n\n\n<h3 class=\"wp-block-heading\" id='list-installed-packages'>List installed packages <a href=\"#list-installed-packages\" class=\"anchor\" id=\"list-installed-packages\" title=\"Anchor for List installed packages\">#<\/a><\/h3>\n\n\n\n<p>To list all installed packages, you use the following <code>pip<\/code> command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php\">pip <span class=\"hljs-keyword\">list<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>It&#8217;ll return a list of packages installed on your computer like this:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">Package<\/span>                                  <span class=\"hljs-selector-tag\">Version<\/span>\n<span class=\"hljs-selector-tag\">----------------------------------------<\/span> <span class=\"hljs-selector-tag\">-----------<\/span>\n<span class=\"hljs-selector-tag\">aiohappyeyeballs<\/span>                         2<span class=\"hljs-selector-class\">.6<\/span><span class=\"hljs-selector-class\">.1<\/span>\n<span class=\"hljs-selector-tag\">aiohttp<\/span>                                  3<span class=\"hljs-selector-class\">.11<\/span><span class=\"hljs-selector-class\">.14<\/span>\n<span class=\"hljs-selector-tag\">aiosignal<\/span>                                1<span class=\"hljs-selector-class\">.3<\/span><span class=\"hljs-selector-class\">.2<\/span>\n<span class=\"hljs-selector-tag\">altgraph<\/span>                                 0<span class=\"hljs-selector-class\">.17<\/span><span class=\"hljs-selector-class\">.4<\/span>\n<span class=\"hljs-selector-tag\">annotated-types<\/span>                          0<span class=\"hljs-selector-class\">.7<\/span><span class=\"hljs-selector-class\">.0<\/span>\n...<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>To check what packages are outdated, you use the following command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php\">pip <span class=\"hljs-keyword\">list<\/span> --outdated<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">Package<\/span>    <span class=\"hljs-selector-tag\">Version<\/span> <span class=\"hljs-selector-tag\">Latest<\/span> <span class=\"hljs-selector-tag\">Type<\/span>\n<span class=\"hljs-selector-tag\">----------<\/span> <span class=\"hljs-selector-tag\">-------<\/span> <span class=\"hljs-selector-tag\">------<\/span> <span class=\"hljs-selector-tag\">-----<\/span>\n<span class=\"hljs-selector-tag\">setuptools<\/span> 47<span class=\"hljs-selector-class\">.1<\/span><span class=\"hljs-selector-class\">.0<\/span>  50<span class=\"hljs-selector-class\">.3<\/span><span class=\"hljs-selector-class\">.2<\/span> <span class=\"hljs-selector-tag\">wheel<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>It shows the package name, the installed version, and the latest version.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='uninstall-a-package'>Uninstall a package <a href=\"#uninstall-a-package\" class=\"anchor\" id=\"uninstall-a-package\" title=\"Anchor for Uninstall a package\">#<\/a><\/h3>\n\n\n\n<p>To uninstall a package, you use the <code>pip uninstall<\/code> command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-11\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml\">pip uninstall <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">package_name<\/span>&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>It&#8217;ll prompt you for a confirmation like this:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">Proceed (y\/n)?<\/code><\/span><\/pre>\n\n\n<p>If you type <code>y<\/code>, pip is going to uninstall the package. Otherwise, it won&#8217;t do so.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id='list-dependencies-of-a-package'>List dependencies of a package <a href=\"#list-dependencies-of-a-package\" class=\"anchor\" id=\"list-dependencies-of-a-package\" title=\"Anchor for List dependencies of a package\">#<\/a><\/h3>\n\n\n\n<p>When you install a package and if that package uses other packages, pip will install the package and its dependency, and also a dependency of dependencies, and so on.<\/p>\n\n\n\n<p>To show the dependencies of a package, you use the following command:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-12\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml\">pip show <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">package_name<\/span>&gt;<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-12\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The following command shows the dependencies of the requests package:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">pip show requests<\/code><\/span><\/pre>\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-13\" data-shcb-language-name=\"HTTP\" data-shcb-language-slug=\"http\"><span><code class=\"hljs language-http\"><span class=\"hljs-attribute\">Name<\/span>: requests\n<span class=\"hljs-attribute\">Version<\/span>: 2.32.3\n<span class=\"hljs-attribute\">Summary<\/span>: Python HTTP for Humans.\n<span class=\"hljs-attribute\">Home-page<\/span>: https:\/\/requests.readthedocs.io\n<span class=\"hljs-attribute\">Author<\/span>: Kenneth Reitz\n<span class=\"hljs-attribute\">Author-email<\/span>: me@kennethreitz.org\n<span class=\"hljs-attribute\">License<\/span>: Apache-2.0\n<span class=\"hljs-attribute\">Location<\/span>: C:\\python\\Lib\\site-packages\n<span class=\"hljs-attribute\">Requires<\/span>: certifi, charset-normalizer, idna, urllib3\n<span class=\"hljs-attribute\">Required-by<\/span>: huggingface-hub, kubernetes, langchain, langchain-community, langsmith, posthog, requests-oauthlib, requests-toolbelt, transformers<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-13\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTTP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">http<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The <code>Requires<\/code> line lists out the packages used by the requests packages.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-14\" data-shcb-language-name=\"HTTP\" data-shcb-language-slug=\"http\"><span><code class=\"hljs language-http\"><span class=\"hljs-attribute\">Requires<\/span>: certifi, charset-normalizer, idna, urllib3<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-14\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTTP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">http<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<h2 class=\"wp-block-heading\" id='summary'>Summary <a href=\"#summary\" class=\"anchor\" id=\"summary\" title=\"Anchor for Summary\">#<\/a><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Python package index provides third-party Python packages developed and maintained by the Python community.<\/li>\n\n\n\n<li>Use Python installer for Python (pip) to manage third-party Python packages.<br><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id='quiz'>Quiz <a href=\"#quiz\" class=\"anchor\" id=\"quiz\" title=\"Anchor for Quiz\">#<\/a><\/h2>\n\n\n\n<iframe loading=\"lazy\"\n  name=\"quiz\"\n  src=\"\/quiz\/?quiz=pip\"\n  height=\"700\"\n  width=\"600\"\n  class=\"iframe\"\n><\/iframe>\n\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful ?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"680\"\n\t\t\t\tdata-post-url=\"https:\/\/www.pythontutorial.net\/python-basics\/python-pip\/\"\n\t\t\t\tdata-post-title=\"Python pip\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"680\"\n\t\t\t\tdata-post-url=\"https:\/\/www.pythontutorial.net\/python-basics\/python-pip\/\"\n\t\t\t\tdata-post-title=\"Python pip\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\t\t\t<input type=\"button\" name=\"wth-submit\" class=\"wth-btn wth-btn-submit\" id=\"wth-submit\" \/>\n\t\t\t<input type=\"button\" class=\"wth-btn wth-btn-cancel\" value=\"Cancel\" \/>\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, you&#8217;ll learn about the Python pip and how to use it to manage third-party packages.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":37,"menu_order":79,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-680","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/pages\/680","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/comments?post=680"}],"version-history":[{"count":2,"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/pages\/680\/revisions"}],"predecessor-version":[{"id":7206,"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/pages\/680\/revisions\/7206"}],"up":[{"embeddable":true,"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/pages\/37"}],"wp:attachment":[{"href":"https:\/\/www.pythontutorial.net\/wp-json\/wp\/v2\/media?parent=680"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}