Install an actual good version of pip.

Change-Id: I0ce36bea05ba4c08818f61805bf052392976cd43
This commit is contained in:
Monty Taylor 2012-01-02 13:26:44 -08:00
parent 7d61fefd26
commit b1327095b3

View File

@ -85,7 +85,8 @@ def create_virtualenv(venv=VENV):
run_command(['virtualenv', '-q', '--no-site-packages', VENV])
print 'done.'
print 'Installing pip in virtualenv...',
if not run_command(['tools/with_venv.sh', 'easy_install', 'pip']).strip():
if not run_command(['tools/with_venv.sh', 'easy_install',
'pip>1.0']).strip():
die("Failed to install pip.")
print 'done.'