Merge "Use 'which pip' rather than /usr/bin/pip"
diff --git a/functions b/functions
index 9565e10..294c380 100644
--- a/functions
+++ b/functions
@@ -1125,9 +1125,9 @@
 # get_pip_command
 function get_pip_command() {
     if is_fedora; then
-        echo "/usr/bin/pip-python"
+        which pip-python
     else
-        echo "/usr/bin/pip"
+        which pip
     fi
 }