PIP Installation on Windows 10.

How to Install PIP on Windows 10?

  • Python
  • 1 min read

PIP is a package management system used to install and manage software packages written in Python programming language. If you have installed the Python on Windows, and you want to use it with Python, then follow these steps to install PIP on Windows 10:

Steps to Install PIP on Windows 10

  1. First, download PIP from the following link get-pip.py.
  2. The link will open in a browser; you can copy all the text and save it to a file, for example, pip.py in directory f:\python.
  3. Now open the command prompt on Windows and change the directory to f:\python, where you saved the pip.py.
  4. Then give the following command to install PIP on Windows 10 for Python.
python pip.py

It will install the PIP on Windows, and you will get the output as shown in the featured image of this article.

To verify the PIP installation, give the following command:

pip -V

If PIP successfully installed then you will get the output something like below:

pip 18.0 from f:\python\python37\lib\site-packages\pip (python 3.7)

See also:

This Post Has 2 Comments

  1. Declan

    i dont have F:\ on my PC

    1. tex0dus

      Hey Declan

      You need to find your Local Disk.

      1. Open File Explorer
      2. Then you click the icon with the monitor screen (This PC)
      3. Then you see the Local Disk with a Letter in brackets

      Done. --> if you need any further questions, let me know.

      Have a pleasant day
      David

Comments are closed.