virtualenv/web/res/res_create_env.py
changeset 2 b380dc74b590
parent 0 896db0083b76
child 10 9ea5f8ba8e71
--- 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':