1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Unzip setuptools in virtualenvs to make diagnostics easier

This commit is contained in:
Dave Abrahams 2010-05-20 02:45:24 -04:00
parent bb8ca1d81f
commit e29b6ef4ea
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ def create_virtualenv(where):
try:
import virtualenv
sys.argv = ['virtualenv', '--quiet', '--no-site-packages', where]
sys.argv = ['virtualenv', '--quiet', '--unzip-setuptools', '--no-site-packages', where]
virtualenv.main()
finally:
sys.argv = save_argv

View file

@ -28,7 +28,7 @@ def create_virtualenv(where):
try:
import virtualenv
sys.argv = ['virtualenv', '--quiet', '--no-site-packages', where]
sys.argv = ['virtualenv', '--quiet', '--no-site-packages', '--unzip-setuptools', where]
virtualenv.main()
finally:
sys.argv = save_argv