virtualenv/web/create_python_env.py
changeset 345 7bc38c7d6cf9
parent 243 1f2840354865
child 450 5bf2dffe3685
--- a/virtualenv/web/create_python_env.py	Tue Sep 30 12:31:48 2014 +0200
+++ b/virtualenv/web/create_python_env.py	Sat Nov 01 17:42:33 2014 +0100
@@ -5,13 +5,9 @@
 -prerequisite:
 
 - virtualenv
-- distribute
 - psycopg2 requires the PostgreSQL libpq libraries and the pg_config utility
 
-- python project-boot.py --distribute --no-site-packages --index-url=http://pypi.websushi.org/ --clear --type-install=local --ignore-packages=MYSQL <path_to_venv>
-- python project-boot.py --no-site-packages --clear --ignore-packages=MYSQL  --type-install=local <path_to_venv>
-- For Linux :
-python project-boot.py --unzip-setuptools --no-site-packages --index-url=http://pypi.websushi.org/ --clear --type-install=local <path_to_venv>
+- python project-boot.py --unzip-setuptools --no-site-packages --clear --type-install=local <path_to_venv>
 
 Probleme avec mysql :
 
@@ -40,7 +36,7 @@
 EXTRA_TEXT += "sys.path.append('%s')\n" % (lib_path)
 EXTRA_TEXT += "sys.path.append('%s')\n" % (os.path.abspath(os.path.join(here,"res")).replace("\\","/"))
 EXTRA_TEXT += "from res_create_env import generate_install_methods\n"
-EXTRA_TEXT += "adjust_options, extend_parser, after_install = generate_install_methods(path_locations, '%s', Logger, call_subprocess)\n" % (src_base)
+EXTRA_TEXT += "adjust_options, extend_parser, after_install = generate_install_methods(path_locations, '%s', '%s', Logger, call_subprocess)\n" % (src_base, here)
 
 def main():
     python_version = ".".join(map(str,sys.version_info[0:2]))