correct venv script
authorymh <ymh.work@gmail.com>
Fri, 25 May 2012 13:02:47 +0200
changeset 29 276320847dfd
parent 28 d3f029ba13db
child 30 577785970de2
correct venv script
virtualenv/res/lib/lib_create_env.py
--- a/virtualenv/res/lib/lib_create_env.py	Fri May 25 12:07:03 2012 +0200
+++ b/virtualenv/res/lib/lib_create_env.py	Fri May 25 13:02:47 2012 +0200
@@ -233,9 +233,9 @@
         logger.notify("Install %s from %s with %s" % (key,res_env.URLS[key][res_source_key],method))
         if method == 'pip':
             if sys.platform == 'win32':
-                args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'pip')), 'install', '-E', os.path.abspath(home_dir), res_env.URLS[key][res_source_key]]
+                args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'pip')), 'install', os.path.abspath(home_dir), res_env.URLS[key][res_source_key]]
             else:
-                args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', '-E', os.path.abspath(home_dir), res_env.URLS[key][res_source_key]]
+                args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', os.path.abspath(home_dir), res_env.URLS[key][res_source_key]]
             if option_str :
                 args.insert(4,option_str)
             call_subprocess(args,