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
Install pip command in Mint
Collapse
X
-
Tags: None
-
pip is a command of Python2, pip3 is a command of Python3.
Install as follows
pip:
Code:$ sudo apt install python-pip
Code:$ sudo apt install python3-pip
Code:$ sudo apt install curl
Code:$ curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
Code:$ sudo python get-pip.py
Code:$ pip --version
Code:$ sudo apt update $ sudo apt upgrade $ sudo apt install python3-pip
Code:$ pip3 --version
-
Before you start to install PIP on Linux Mint 19. You must have a non-root user account on your server with sudo privileges.
To install pip run the following code
Code:sudo apt install python3-pip
Code:pip3 --version
pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)Comment
Comment