Fix pip invocation for old versions of pip.

Fixes bug 1190749.

Change-Id: I91fce8ee1c37f945062e81c1585ee45613e05371
This commit is contained in:
Monty Taylor 2013-06-13 08:44:47 -07:00
parent fa4f46e39c
commit 182feb3061
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ def _pip_install(links, requires, root=None):
if root:
root_cmd = "--root=%s" % root
_run_shell_command(
"%s -m pip install %s %s %s" % (
"%s -m pip.__init__ install %s %s %s" % (
sys.executable,
root_cmd,
" ".join(links),