We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80eb79c + bd4048a commit 8c71ffaCopy full SHA for 8c71ffa
tools/install_pip.sh
@@ -117,8 +117,10 @@ get_versions
117
118
# Eradicate any and all system packages
119
120
-# python in f23 depends on the python-pip package
121
-if ! { is_fedora && [[ $DISTRO == "f23" ]]; }; then
+# Python in f23 and f22 depends on the python-pip package so removing it
+# results in a nonfunctional system. pip on fedora installs to /usr so pip
122
+# can safely override the system pip for all versions of fedora
123
+if ! is_fedora ; then
124
uninstall_package python-pip
125
uninstall_package python3-pip
126
fi
0 commit comments