Curriculum
In this tutorial, you will learn to install Python pip on your Windows PC.
Before we install pip in windows, let us understand what pip is and what does it do. PIP stands for “Preferred Installer Program”. It is a package management system used to install and manage software packages/libraries written in Python. Whenever you try installing a package through pip, pip will search for that package on PyPI and if found, it will download and install the package on your local system. Python Package Index (PyPI) is an online repository for python packages.
Click here to download the pip file: get-pip.py
python get-pip.py
Run the following code in the command prompt.
pip –V
This will show the installed pip version on your computer.