📎 AI Summary:
The thread discusses installing the pip package manager on Linux Mint to set up Django. The original poster struggles with the absence of the pip command and seeks assistance. Responders suggest installing pip using commands like "sudo apt install pip" or "apt install python3-pip," providing clear instructions for both Python 2 and Python 3, indicating a helpful and solution-oriented exchange.

Gabriel Turqos

Active Member
Joined
Mar 11, 2019
Messages
17
Thread Author #1
I have to install the Django package to my mint distribution. I want to accomplish this by using pip command but can not find the pip command. How can I install the pip command ? Thanks
 

RuskinF

Member
Joined
Feb 17, 2020
Messages
87
These commands will help you to install pip on Linux:
# apt install python-pip #python 2
# apt install python3-pip #python 3
 

Solution