virtualenv/web/res/res_create_env.py
changeset 5 9aca3c15fbff
parent 2 b380dc74b590
child 10 9ea5f8ba8e71
--- a/virtualenv/web/res/res_create_env.py	Fri May 27 18:27:49 2011 +0200
+++ b/virtualenv/web/res/res_create_env.py	Fri May 27 18:28:58 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':