How to install pip in Linux

PIP is the package installer for Python. This article explains the steps to install pip in Linux.

Step1: Download pip downloader.

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

Step2: Execute and install pip

#python get-pip.py

That's all…

Leave a Reply