Last active
February 19, 2019 09:51
-
-
Save jfrost/aaffbb907887d84cf463 to your computer and use it in GitHub Desktop.
Fix broken python pip in Ubuntu
This file contains hidden or 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
#!/bin/bash | |
sudo apt-get purge -y python-pip | |
cd /tmp | |
wget https://bootstrap.pypa.io/get-pip.py | |
sudo python get-pip.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment