How to Install Pip on Windows in 2023 (Easy Guide).
Recently, we wrote an in depth tutorial on how to construct your individual AI chatbot with ChatGPT API. And for that venture, we used Python and Pip to run a number of important libraries. So in case you are additionally getting began with Python for a venture, be sure that to put in Pip in your Windows PC. You will be capable to obtain most of the dependencies and libraries in just a few seconds. On that observe, let’s go forward and discover ways to set up Pip on Windows 11 and 10.
Install Pip on Windows 11 and 10 (2023)
Here, you may find out about Pip and learn how to put in it on Windows together with Python. We have additionally added fixes to some errors, principally associated to path misconfiguration. You can develop the desk beneath and transfer to any part you need.
What is Pip?

Pip is the bundle supervisor for Python. In easy phrases, it principally permits you to set up and handle hundreds of thousands of Python packages and libraries from the command line. It connects to the Python Package Index (PyPI) repository the place you will discover hundreds of initiatives, apps, software program growth kits, purchasers, and more. If you’re creating a venture, and in the event you want some dependencies which aren’t a part of the usual Python distribution, Pip can add them for you effortlessly. Simply put, Pip is an integral a part of Python and to get began, you should set up each of them.
Check If Pip Is Already Installed on Windows
If you could have put in Python, chances are you’ll have already got Pip put in in your system. So earlier than you progress to the set up steps, let’s examine if Pip is already put in on Windows or not.
1. Open Command Prompt or Windows Terminal. After that, run the beneath command. If you get the Pip model because the output, it means Pip is already put in in your PC. You can scroll down and discover ways to improve Pip to the most recent model on Windows.
pip --version

2. In case, you get errors like “Command not found” or “‘Pip’ is not recognized as an internal or external command, operable program or batch file.”, it implies that Pip will not be correctly put in in your PC. Follow the beneath steps to put in Pip and configure its path as properly.

How to Install Pip on Windows PCs
Install Pip with Python
To set up Pip on Windows, you could set up Python solely. When you put in Python using the desktop setup file, Pip can also be sideloaded on Windows. Here is how one can arrange Pip on Windows.
1. First and foremost, transfer to this hyperlink and obtain the most recent model of Python for Windows.

2. After that, double-click on the setup file. Once the installer seems, be sure that to allow the checkbox next to “Add Python.exe to PATH“.

2. After that, click on on “Customize installation” and ensure “pip” is enabled together with different choices. Click on “Next” after which “Install”.

3. Now, Python together with Pip, each will get put in in your Windows PC.

Install Pip through Command Line
You can even manually set up Pip on Windows from the command line both using CMD or Windows Terminal. Follow the steps beneath.
1. Right-click on this hyperlink after which select “Save link as…”.

2. Now, put it aside as “get-pip.py” file within the “Downloads” folder.

3. Next, right-click on the “get-pip.py” file and select “Copy as path”.

4. Finally, open the Terminal and execute it within the beneath trend. Enter python
, add an area, after which paste the trail. After that, hit Enter and Pip can be put in in your Windows 11/10 laptop.
python "C:UsersmearjDownloadsget-pip.py"

5. Apart from that, you may as well run this command to obtain and set up Pip on a Windows PC using the “ensurepip” module.
python -m ensurepip --upgrade

Verify Pip Installation
1. To examine if every thing went proper, open Windows Terminal or Command Prompt and run the beneath instructions. If the set up was profitable, the primary command will show the Python model, and the second command will present the Pip model at present put in in your PC.
python --version pip --version

2. You can even sort the beneath command to seek out all of the instructions pip takes as an argument. If it returns a protracted checklist of command choices, you’re good to go.
python --help pip --help
Upgrade or Downgrade Pip on Windows
1. After set up, run the beneath command within the Terminal to improve Pip to the most recent model on Windows. Here’s what the syntax appears like:
python -m pip set up -U pip

2. In case you wish to downgrade Pip to a particular model, run the beneath command:
python -m pip set up pip==19.0

How to Add Python and Pip to PATH on Windows 11 and 10
After putting in and operating the Python or Pip command on Windows in the event you get errors akin to “Pip is not recognized as an internal or external command,” or “Python is not recognized as an internal or external command,” or just “Python not found”, don’t worry. It implies that Python or Pip might have been put in in your Windows PC, however their paths haven’t been configured appropriately. We want so as to add their directories as a world Windows atmosphere variable. Here is how to do it.
1. First of all, press “Windows + R” to open the Run immediate and paste the beneath path, and hit Enter.
%localappdatapercentProgramsPython

2. After that, open one other “Python3XX” folder. Now, copy the entire path from the deal with bar. This is Python’s path you could add as an atmosphere variable.

3. Next, transfer to the “Scripts” folder and click on on the “Address bar”. Now, copy the entire path once more. This is Pip’s path you could add as an atmosphere variable.

4. After you get paths for each Python and Pip, open the Run immediate once more by urgent “Windows + R”. Here, sort sysdm.cpl
and hit Enter. This will straight open the Advanced System Settings.

5. Move to the “Advanced” tab, and click on on “Environment Variables” on the backside.

6. Next, below the “User variables for …” part, choose “Path” and click on on the “Edit…” button.

7. Here, click on on “New” and add each the paths you copied above on the left aspect. Now, click on on “OK”. Keep in thoughts, the paths can be totally different for every PC. This will add python
and pip
as international atmosphere variables in your PC.

7. Finally, open Command Prompt or Windows Terminal and run a Python/ Pip command. For instance – You can use the pip command to put in the OpenAPI in your Windows PC, and it received’t show an error.
python --version pip set up openai
Download and Install Pip on Windows With Python
So that is how one can obtain and set up Pip on Windows 11 or 10. I might counsel downloading the official installer from Python’s web site and putting in it to avoid any errors. It works for me 100% of the time. Anyway, that’s all from us. If you wish to discover ways to set up Python in Ubuntu Linux, head to our information for more particulars. And to seek out the very best Python studying programs, we have now a curated checklist prepared for you. Finally, you probably have any questions, tell us within the remark part beneath.
Check out more article on – How-To tutorial and latest highlights on – Technical News