Last active
April 18, 2018 16:55
-
-
Save magickatt/8bfeca41444b5c8e74ad0328ad6e9582 to your computer and use it in GitHub Desktop.
Safely upgrade PIP in CentOS/RHEL 6
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
# This will upgrade PIP 7.1 to PIP 10.x, which will break PIP | |
#sudo pip install --upgrade pip | |
# This is the last version of PIP that will work with CentOS/RHEL 6 | |
sudo pip install pip==9.0.3 | |
# Installing collected packages: pip | |
# Found existing installation: pip 7.1.0 | |
# Uninstalling pip-7.1.0: | |
# Successfully uninstalled pip-7.1.0 | |
# Successfully installed pip-9.0.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment