| author | ymh <ymh.work@gmail.com> |
| Mon, 29 Jul 2024 23:18:55 +0200 | |
| changeset 131 | 2a18dfe8bfc0 |
| parent 87 | 81a5cb5aa263 |
| permissions | -rw-r--r-- |
| 16 | 1 |
import platform |
2 |
||
3 |
from lib_create_env import lib_generate_install_methods, install_pylucene, install_psycopg2 |
|
4 |
||
5 |
system_str = platform.system() |
|
6 |
||
7 |
||
8 |
INSTALLS = [#(key,method, option_str, dict_extra_env) |
|
9 |
('DISTRIBUTE', 'pip', None, None), |
|
|
87
81a5cb5aa263
correct virtualenv build problem for python 2.7
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
10 |
# ('PYCRYPTO', 'pip', None, None), |
| 16 | 11 |
('SSH', 'pip', None, None), |
12 |
('FABRIC', 'pip', None, None), |
|
13 |
('MERCURIAL', 'pip', None, None), |
|
14 |
] |
|
15 |
||
16 |
def generate_install_methods(path_locations, src_base, Logger, call_subprocess): |
|
17 |
return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS) |