How to install pip on python.

Pasindu Thejan
1 min readApr 7, 2020

--

What is pip ?

Pip is a package management system used to install and manage software packages in python.

Step 01

First at all you need to know about whether your computer had python install or not. To do that, you need to open CMD and type python and press Enter.

Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32
Type “help”, “copyright”, “credits” or “license” for more information.

If you receive above message on cmd, python was install on your computer. other wise you need to install python. Click here to know, how python install.

Step 02

Download get-pip.py to your computer. (Some time this link directed to website which having hole pip.py code. Therefore you need right click on that site and save as .py file format.)

Step 03

Then you need to go downloaded get-pip.py directory.

Now run CMD on that directory.

Then type python get-pip.py in CMD and press Enter.

That’s it…

--

--