diff -r 95c490397619 -r b380dc74b590 virtualenv/web/res/res_create_env.py --- a/virtualenv/web/res/res_create_env.py Thu May 26 17:17:04 2011 +0200 +++ b/virtualenv/web/res/res_create_env.py Fri May 27 18:20:22 2011 +0200 @@ -1,6 +1,7 @@ +from lib_create_env import (lib_generate_install_methods, install_pylucene, + install_psycopg2, install_libyaml) import platform -from lib_create_env import lib_generate_install_methods, install_pylucene, install_psycopg2 system_str = platform.system() @@ -9,11 +10,14 @@ ('JCC','easy_install',None,None), ('PSYCOPG2',install_psycopg2,None,None), ('PYLUCENE','easy_install',None,None), + ('PYYAML','easy_install',None,None), ] else: INSTALLS = [ ('PYLUCENE',install_pylucene,None,None), ('PSYCOPG2', 'pip', None, None), +# ('LIBYAML', install_libyaml, None, None) + ('PYYAML', 'pip', None, None), ] if system_str == 'Linux':