Created
December 2, 2020 23:56
-
-
Save kudosqujo/f8d8d555a183a2b10448539c56d5e9b6 to your computer and use it in GitHub Desktop.
[HOWTO: Install PIP] #howto #tips #python #pip #linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt update && apt upgrade # update apt utility and upgrade already installed packages | |
apt install python-pip # install tool | |
# tip: if unable to install older version of pip, run this: | |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; python get-pip.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment