1 from lib_create_env import (lib_generate_install_methods, install_pylucene, |
1 from lib_create_env import (lib_generate_install_methods, install_pylucene, |
2 install_psycopg2, install_libyaml) |
2 install_psycopg2, install_pystemmer, install_libyaml) |
3 import platform |
3 import platform |
4 |
4 |
5 |
5 |
6 system_str = platform.system() |
6 system_str = platform.system() |
7 |
7 |
9 INSTALLS = [ |
9 INSTALLS = [ |
10 ('JCC','easy_install',None,None), |
10 ('JCC','easy_install',None,None), |
11 ('PSYCOPG2',install_psycopg2,None,None), |
11 ('PSYCOPG2',install_psycopg2,None,None), |
12 ('PYLUCENE','easy_install',None,None), |
12 ('PYLUCENE','easy_install',None,None), |
13 ('PYYAML','easy_install',None,None), |
13 ('PYYAML','easy_install',None,None), |
|
14 ('PYSTEMMER',install_pystemmer,None,None), |
14 ] |
15 ] |
15 else: |
16 else: |
16 INSTALLS = [ |
17 INSTALLS = [ |
17 ('PYLUCENE',install_pylucene,None,None), |
18 ('PYLUCENE',install_pylucene,None,None), |
18 ('PSYCOPG2', 'pip', None, None), |
19 ('PSYCOPG2', 'pip', None, None), |