---
description: PIP is a standard Package Manager for Python. It is a command-line tool that helps you to install and uninstall external packages or dependencies very easily.
title: How to install PIP on Windows
image: https://www.guru99.com/images/how-to-install-pip-on-windows.png
---

 

[Skip to content](#main) 

**⚡ Smart Summary**

Learn how to install PIP on Windows using two reliable methods, verify the installation, and configure PATH so commands run from any directory. This walkthrough also covers managing Python packages and upgrading or downgrading PIP safely.

* 🐍 **Bundled Default:** PIP ships automatically with Python 3.4 and every later release, so most users already have it on their machine.
* 📦 **Two Install Paths:** Use the manual get-pip.py download from pypa.org or fetch it instantly through cURL inside Command Prompt.
* ⚙️ **PATH Setup:** Adding the Scripts folder to Environment Variables removes the common “not recognized” error when running pip from any directory.
* 🔄 **Version Control:** Upgrade with python -m pip install –upgrade pip, or pin an older release using pip install pip==version\_number.
* ✅ **Package Management:** Once installed, pip install, pip show, and pip uninstall handle every PyPI dependency your Python project needs.

[ Read More ](javascript:void%280%29;) 

![How to install PIP on Windows](https://www.guru99.com/images/how-to-install-pip-on-windows.png)

## What is PIP?

PIP is a **standard Package Manager** for Python. It is a command-line tool that helps you install and uninstall external packages or dependencies very easily. You can call it “PIP installs packages,” too.

These external packages are stored online in a repository called **PyPI** (Python Package Index). PIP saves time by maintaining Python packages unavailable in the Standard Library. It automates **time-consuming tasks**, makes installing different **modules** easier, and maintains the **packages and dependencies** efficiently.

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-1.png)

Let’s [learn Python](https://www.guru99.com/python-tutorials.html) concept of how you can install PIP on windows and the problems faced while installing PIP.

## How to Check if PIP is already installed?

PIP is automatically installed in **Python 3.4** and higher versions. To check if PIP is already installed on your PC or not, execute the following steps:

**Step 1)** Run the Command prompt.

**Step 2)** Type the following command.

pip help

If PIP is installed, then it will respond otherwise it will show you an error.

## How to Download and Install PIP

You need Python installed in your Windows Machine before installing PIP. Use the following command to check whether Python is installed on your PC:

python --version

If Python installation is already done, you will get something like this-

C:\Users\Guru99>python --version
Python 3.10.9

There are two ways to install PIP, either by using:

1) cURL  
2) You can install PIP on windows manually

## Method 1: How to Install PIP on Windows Manually

You can manually install PIP, just use the correct version of the **get-pip.py** file from pypa.org. This get-pip.py is a bootstrapping script that is used to install PIP in Python environments. Here are the steps to manually install PIP on Windows:

**Step 1)** Visit <https://bootstrap.pypa.io/get-pip.py>

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-2.png)

**Step 2)** Right Click on the Mouse and save the get-pip.py file.

**Step 3)** Move the get-pip.py file to the same folder where you have Python installed.

**Step 4)** Open the Command Prompt window and change the directory to the same directory as above.

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-3.png)

**Step 5)** Run the following command in the Windows command prompt.

python get-pip.py

**Output-**

C:\Users\Guru99>python get-pip.py
Collecting pip
Using cached pip-22.3.1-py3-none-any.whl (2.1 MB)
Installing collected packages: pip

WARNING: The scripts pip.exe, pip3.10.exe, and pip3.exe are installed in 'C:\Users\Priya\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\Scripts' which is not on PATH.
Successfully installed pip-22.3.1
C:\Users\Guru99>

This process will take some time, and PIP will be installed on your system. That’s how you will install PIP on windows Manually.

### RELATED ARTICLES

* [Python Variables: How to Define/Declare String Variable Types ](https://www.guru99.com/variables-in-python.html "Python Variables: How to Define/Declare String Variable Types")
* [Python DateTime, TimeDelta, Strftime(Format) with Examples ](https://www.guru99.com/date-time-and-datetime-classes-in-python.html "Python DateTime, TimeDelta, Strftime(Format) with Examples")
* [Multithreading in Python with Example: Learn GIL in Python ](https://www.guru99.com/python-multithreading-gil-example.html "Multithreading in Python with Example: Learn GIL in Python")
* [Python range() Function: Float, List, For loop Examples ](https://www.guru99.com/python-range-function.html "Python range() Function: Float, List, For loop Examples")

## Method 2: How to install PIP on Windows Using cURL in Python

**cURL** (Client URL) is a command-line tool that allows you to **exchange** the data between the server and the device using the terminal.

You can use cURL to install Python PIP on windows. Follow these steps:

**Step 1)** Open the Command Prompt Window

**Step 2)** We need to request data from the server using cURL. Use the following command:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

**Output-**

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-4.png)

**Step 3)** Run the following command

python get-pip.py

PIP will be installed

## How to Check if PIP is successfully installed?

In order to verify whether PIP was successfully installed on your system, let’s run a version check in the terminal.

Open your command prompt window and type this command-

**Syntax:**

pip -V

Or

pip --version

If this command returns the PIP version, then PIP is installed on your system.

## How to add PIP to Windows Environmental Variables

Now that you have successfully installed PIP, you would like to be able to run it from anywhere. You’ll get an error like this “not on Path” if you try to run it from another directory. To add this, you will need to add PIP to Windows Environment Variables.

Here are steps to add PIP to Environmental Variables:

**Step 1)** Open the Control Panel and search for **system** and Click **Edit the system Environment variables**

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-5.png)

**Step 2)** Open the Environment Variables.

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-6.png)

**Step 5)** Select the PATH, and then new, add the folder where you have Python PIP installed, and then select ok.

[](https://www.guru99.com/images/3/how-to-install-pip-on-windows-7.png)

Usually the path is `C:\Python34\Scripts\pip`

## How to manage Python Packages With PIP

You have successfully installed PIP. Now, you can easily install and manage Python packages.

You can **install any Python** **Package** using the following command:

pip install <package-name>

The latest version of that package will be installed using this PIP command. If you want PIP to install a specific version of a package, you can use the following command:

pip install <package-name==version>

You can **view the information** of a package using the following command:

pip show <package-name>

Use this command to **uninstall a package**–

pip uninstall <package-name>

## How to Upgrade PIP in Windows

You should update PIP whenever a new version of PIP is released. These new versions of PIP are released frequently, as they may add some improved functionalities to PIP.

Check the current version of PIP by running the following command:

pip --version

After checking the version of PIP, you can use the following command to check for a PIP upgrade-

python -m pip install --upgrade pip

This command will uninstall the current version of PIP from your system and install the latest version of PIP.

## How to Downgrade Pip on Windows

Newly released versions of PIP may work improperly, or some versions may not support your system; then you can downgrade PIP using the following command-

python -m pip install pip==version_number

You can change the version you want to install instead of version\_number in the above command.

## How to Uninstall PIP on Windows

If you want to uninstall PIP, type the following command in your command prompt-

pip uninstall pip

The system will ask for confirmation, and then PIP will be uninstalled.

## FAQs

🔌 What is the difference between pip and pip3 on Windows?

pip targets the default Python installation, while pip3 explicitly targets Python 3\. On modern Windows systems with only Python 3 installed, both commands behave identically.

⚠️ Why does Windows say pip is not recognized as a command?

The error means the Python Scripts folder is missing from PATH. Add the Scripts directory through Environment Variables, then reopen Command Prompt and retry the pip command.

🌐 How do I install PIP behind a corporate proxy or offline?

Use pip install –proxy http://user:pass@host:port package, or download wheel files on another machine and install offline with pip install package.whl from a local folder.

🤖 Can AI assistants help install or debug PIP errors on Windows?

Yes. Tools such as ChatGPT, Claude, and GitHub Copilot interpret pip error logs, suggest exact PATH fixes, and generate Command Prompt commands tailored to your Windows version.

🧠 Can AI tools recommend which Python packages to install with PIP?

Yes. AI assistants suggest trusted PyPI packages for your task, compare alternatives, flag deprecated libraries, and generate ready-to-run pip install commands with pinned version numbers.

#### Summarize this post with:

ChatGPT Perplexity Grok Google AI 

**Stay Updated on AI** **Get Weekly AI Skills, Trends, Actionable Advice.** 

##### Sign up for the newsletter

Subscribe for Free 

You have successfully subscribed.  
Please check your inbox. 

![AI-Newsletter]() Chosen by over **350,000+** professionals 

[Scroll to top ](#wrapper)Scroll to top 

× 

Toggle Menu Close 

Search for: 

Search

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.guru99.com/#organization","name":"Guru99","sameAs":["https://www.facebook.com/Guru99Official","https://twitter.com/guru99com"],"logo":{"@type":"ImageObject","@id":"https://www.guru99.com/#logo","url":"https://www.guru99.com/images/guru99-logo-v1-150x59.png","contentUrl":"https://www.guru99.com/images/guru99-logo-v1-150x59.png","caption":"Guru99","inLanguage":"en-US"}},{"@type":"WebSite","@id":"https://www.guru99.com/#website","url":"https://www.guru99.com","name":"Guru99","publisher":{"@id":"https://www.guru99.com/#organization"},"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://www.guru99.com/images/how-to-install-pip-on-windows.png","url":"https://www.guru99.com/images/how-to-install-pip-on-windows.png","width":"700","height":"250","caption":"How to install PIP on Windows","inLanguage":"en-US"},{"@type":"BreadcrumbList","@id":"https://www.guru99.com/how-to-install-pip-on-windows.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":"1","item":{"@id":"https://www.guru99.com","name":"Home"}},{"@type":"ListItem","position":"2","item":{"@id":"https://www.guru99.com/python","name":"Python"}},{"@type":"ListItem","position":"3","item":{"@id":"https://www.guru99.com/how-to-install-pip-on-windows.html","name":"How to install PIP on Windows"}}]},{"@type":"WebPage","@id":"https://www.guru99.com/how-to-install-pip-on-windows.html#webpage","url":"https://www.guru99.com/how-to-install-pip-on-windows.html","name":"How to install PIP on Windows","dateModified":"2026-06-22T16:11:46+05:30","isPartOf":{"@id":"https://www.guru99.com/#website"},"primaryImageOfPage":{"@id":"https://www.guru99.com/images/how-to-install-pip-on-windows.png"},"inLanguage":"en-US","breadcrumb":{"@id":"https://www.guru99.com/how-to-install-pip-on-windows.html#breadcrumb"}},{"@type":"Person","@id":"https://www.guru99.com/author/anna","name":"Anna Blake","description":"I'm Anna Blake, specializing in Python tutorials, offering clear and concise lessons to help you master Python programming efficiently.","url":"https://www.guru99.com/author/anna","image":{"@type":"ImageObject","@id":"https://www.guru99.com/images/anna-blake-author.png","url":"https://www.guru99.com/images/anna-blake-author.png","caption":"Anna Blake","inLanguage":"en-US"},"worksFor":{"@id":"https://www.guru99.com/#organization"}},{"articleSection":"Python","headline":"How to install PIP on Windows","description":"PIP is a standard Package Manager for Python. It is a command-line tool that helps you to install and uninstall external packages or dependencies very easily.","keywords":"python","speakable":{"@type":"SpeakableSpecification","cssSelector":[".entry-title",".summary"]},"@type":"Article","author":{"@id":"https://www.guru99.com/author/anna","name":"Anna Blake"},"dateModified":"2026-06-22T16:11:46+05:30","image":{"@id":"https://www.guru99.com/images/how-to-install-pip-on-windows.png"},"copyrightYear":"2026","name":"How to install PIP on Windows","subjectOf":[{"@type":"HowTo","name":"How to Download and Install PIP","description":"You need Python installed in your Windows Machine before installing PIP. Use the following command to check whether Python is installed on your PC:","step":[{"@type":"HowToStep","name":"Method 1: How to Install PIP on Windows Manually","text":"You can manually install PIP, just use the correct version of the get-pip.py file from pypa.org. This get-pip.py is a bootstrapping script that is used to install PIP in Python environments. Here are the steps to manually install PIP on Windows: Visit https://bootstrap.pypa.io/get-pip.py","image":"https://www.guru99.com/images/3/how-to-install-pip-on-windows-2.png","url":"https://www.guru99.com/how-to-install-pip-on-windows.html#step1"},{"@type":"HowToStep","name":"Method 2: How to install PIP on Windows Using cURL in Python","text":"cURL (Client URL) is a command-line tool that allows you to exchange the data between the server and the device using the terminal.","image":"https://www.guru99.com/images/3/how-to-install-pip-on-windows-4.png","url":"https://www.guru99.com/how-to-install-pip-on-windows.html#step2"}]},{"@type":"FAQPage","mainEntity":[{"@type":"Question","name":"What is the difference between pip and pip3 on Windows?","acceptedAnswer":{"@type":"Answer","text":"pip targets the default Python installation, while pip3 explicitly targets Python 3. On modern Windows systems with only Python 3 installed, both commands behave identically."}},{"@type":"Question","name":"Why does Windows say pip is not recognized as a command?","acceptedAnswer":{"@type":"Answer","text":"The error means the Python Scripts folder is missing from PATH. Add the Scripts directory through Environment Variables, then reopen Command Prompt and retry the pip command."}},{"@type":"Question","name":"How do I install PIP behind a corporate proxy or offline?","acceptedAnswer":{"@type":"Answer","text":"Use pip install --proxy http://user:pass@host:port package, or download wheel files on another machine and install offline with pip install package.whl from a local folder."}},{"@type":"Question","name":"Can AI assistants help install or debug PIP errors on Windows?","acceptedAnswer":{"@type":"Answer","text":"Yes. Tools such as ChatGPT, Claude, and GitHub Copilot interpret pip error logs, suggest exact PATH fixes, and generate Command Prompt commands tailored to your Windows version."}},{"@type":"Question","name":"Can AI tools recommend which Python packages to install with PIP?","acceptedAnswer":{"@type":"Answer","text":"Yes. AI assistants suggest trusted PyPI packages for your task, compare alternatives, flag deprecated libraries, and generate ready-to-run pip install commands with pinned version numbers."}}]}],"@id":"https://www.guru99.com/how-to-install-pip-on-windows.html#schema-251206","isPartOf":{"@id":"https://www.guru99.com/how-to-install-pip-on-windows.html#webpage"},"publisher":{"@id":"https://www.guru99.com/#organization"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.guru99.com/how-to-install-pip-on-windows.html#webpage"}}]}
```
