If you’re using a Debian server that’s hosting a Python application you might need to have Python’s Package Manager – PIP installed. In this article, we will show you how to install Python’s PIP on a Debian Server with few commands.
Install PIP using cURL
curl -O https://bootstrap.pypa.io/get-pip.py
Install PIP using Python
python get-pip.py
Installing PIP using apt-get
apt-get update apt-get install python-pip