Skip to content

Commit

Permalink
ignore system installed pip/setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
qwcode committed Jan 2, 2014
1 parent dc004f6 commit 54d1117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualenv.py
Expand Up @@ -942,7 +942,7 @@ def install_wheel(project_names, py_executable, search_dirs=None):

cmd = [
py_executable, '-c',
'import sys, pip; pip.main(["install"] + sys.argv[1:])',
'import sys, pip; pip.main(["install", "--ignore-installed"] + sys.argv[1:])',
] + project_names
logger.start_progress('Installing %s...' % (', '.join(project_names)))
logger.indent += 2
Expand Down

0 comments on commit 54d1117

Please sign in to comment.