diff --git a/tools/install_venv.py b/tools/install_venv.py index d7231ac7a..0b1d843ae 100644 --- a/tools/install_venv.py +++ b/tools/install_venv.py @@ -168,7 +168,8 @@ def create_virtualenv(venv=VENV, no_site_packages=True): run_command(['virtualenv', '-q', 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.'