Browse Source

fix: prefer system package rather than easy_install for getting pip

Kyle Davis 6 years ago
parent
commit
6a1d60c852
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gimmes/pip

+ 1 - 1
gimmes/pip

@@ -7,6 +7,6 @@ if ! has pip; then
 	if [[ "$OS" = "Darwin" ]]; then
 		curl -fsSL "https://bootstrap.pypa.io/get-pip.py" | python - --user
 	else
-		sudo easy_install pip
+		gimme_pkg python-pip || sudo easy_install pip
 	fi
 fi