Install Latest PIP

ยท
1 min read
notes
#python #debian #pip

Install latest PIP.

There are ways to install latest PIP in Python3.

Bootstrap

Install in user directory.

Terminal window
wget -O- https://bootstrap.pypa.io/get-pip.py | python3

A Little Bit Debian

Install in system-wide.

Terminal window
sudo apt install python3-pip
sudo pip3 install --upgrade setuptools