-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdependencies.py
More file actions
284 lines (218 loc) · 7.68 KB
/
Copy pathdependencies.py
File metadata and controls
284 lines (218 loc) · 7.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import sys
import io
import site
import importlib
import platform
def _add_user_site_to_path(feedback=None):
try:
user_site = site.getusersitepackages()
if user_site and user_site not in sys.path:
sys.path.append(user_site)
if feedback:
feedback.pushInfo(f'Added user site-packages to sys.path: {user_site}')
except Exception as e:
if feedback:
feedback.pushInfo(f'Could not add user site-packages: {e}')
def _import_module(module_name, feedback=None):
try:
return importlib.import_module(module_name)
except Exception as e:
if feedback:
feedback.pushInfo(f'Could not import "{module_name}": {e}')
return None
def _pip_install(args, feedback=None):
old_stdout = sys.stdout
old_stderr = sys.stderr
fake_out = io.StringIO()
fake_err = io.StringIO()
try:
import pip
sys.stdout = fake_out
sys.stderr = fake_err
result = pip.main(args)
stdout_text = fake_out.getvalue().strip()
stderr_text = fake_err.getvalue().strip()
if stdout_text and feedback:
feedback.pushInfo(stdout_text)
if stderr_text and feedback:
feedback.pushInfo(stderr_text)
if result not in (0, None):
msg = stderr_text or stdout_text or f'pip.main returned code {result}'
if feedback:
feedback.reportError(msg)
return False
return True
except Exception as e:
stdout_text = fake_out.getvalue().strip()
stderr_text = fake_err.getvalue().strip()
extra = stderr_text or stdout_text
if feedback:
if extra:
feedback.reportError(f'{e} | pip output: {extra}')
else:
feedback.reportError(str(e))
return False
finally:
sys.stdout = old_stdout
sys.stderr = old_stderr
def _install_package(package_name, feedback=None):
system_os = platform.system()
if feedback:
feedback.pushInfo(f'Package "{package_name}" not found. Trying to install...')
feedback.pushInfo(f'Operating system detected: {system_os}')
feedback.pushInfo('Installation method: pip.main()')
strategies = [
["install", package_name],
["install", "--user", package_name],
["install", "--upgrade", package_name],
["install", "--user", "--upgrade", package_name],
]
for args in strategies:
if feedback:
feedback.pushInfo(f'Trying pip: {" ".join(args)}')
ok = _pip_install(args, feedback)
if ok:
importlib.invalidate_caches()
_add_user_site_to_path(feedback)
if feedback:
feedback.pushInfo(f'Package "{package_name}" installed successfully.')
return True
if feedback:
feedback.reportError(
f'Failed to install "{package_name}" automatically. '
f'Try manual installation in the QGIS Python environment.'
)
return False
# ==========================
# PILLOW
# ==========================
def ensure_pillow(feedback=None):
_add_user_site_to_path(feedback)
Image = _import_module("PIL.Image", feedback)
if Image is not None:
if feedback:
try:
feedback.pushInfo(f'Pillow already available: {Image.__file__}')
except Exception:
feedback.pushInfo('Pillow already available.')
return Image
if not _install_package("Pillow", feedback):
return None
importlib.invalidate_caches()
_add_user_site_to_path(feedback)
Image = _import_module("PIL.Image", feedback)
if Image is None:
if feedback:
feedback.reportError(
'Pillow installation was attempted, but PIL.Image is still unavailable. '
'Restart QGIS and try again.'
)
return None
if feedback:
try:
feedback.pushInfo(f'Pillow loaded after installation: {Image.__file__}')
except Exception:
feedback.pushInfo('Pillow loaded after installation.')
return Image
# ==========================
# MATPLOTLIB
# ==========================
def ensure_matplotlib(feedback=None):
_add_user_site_to_path(feedback)
path = _import_module("matplotlib.path", feedback)
if path is not None:
if feedback:
try:
feedback.pushInfo(f'Matplotlib already available: {path.__file__}')
except Exception:
feedback.pushInfo('Matplotlib already available.')
return path
if not _install_package("matplotlib", feedback):
return None
importlib.invalidate_caches()
_add_user_site_to_path(feedback)
path = _import_module("matplotlib.path", feedback)
if path is None:
if feedback:
feedback.reportError(
'Matplotlib installation was attempted, but matplotlib.path is still unavailable. '
'Restart QGIS and try again.'
)
return None
if feedback:
try:
feedback.pushInfo(f'Matplotlib loaded after installation: {path.__file__}')
except Exception:
feedback.pushInfo('Matplotlib loaded after installation.')
return path
# ==========================
# MATPLOTLIB PYPLOT
# ==========================
def ensure_pyplot(feedback=None):
_add_user_site_to_path(feedback)
pyplot = _import_module("matplotlib.pyplot", feedback)
if pyplot is not None:
if feedback:
try:
feedback.pushInfo(
f'Matplotlib pyplot already available: {pyplot.__file__}'
)
except Exception:
feedback.pushInfo(
'Matplotlib pyplot already available.'
)
return pyplot
if not _install_package("matplotlib", feedback):
return None
importlib.invalidate_caches()
_add_user_site_to_path(feedback)
pyplot = _import_module("matplotlib.pyplot", feedback)
if pyplot is None:
if feedback:
feedback.reportError(
'Matplotlib installation was attempted, '
'but matplotlib.pyplot is still unavailable. '
'Restart QGIS and try again.'
)
return None
if feedback:
try:
feedback.pushInfo(
f'Matplotlib pyplot loaded after installation: {pyplot.__file__}'
)
except Exception:
feedback.pushInfo(
'Matplotlib pyplot loaded after installation.'
)
return pyplot
# ==========================
# SCIPY
# ==========================
def ensure_scipy(feedback=None):
_add_user_site_to_path(feedback)
stats = _import_module("scipy.stats", feedback)
if stats is not None:
if feedback:
try:
feedback.pushInfo(f'SciPy already available: {stats.__file__}')
except Exception:
feedback.pushInfo('SciPy already available.')
return stats
if not _install_package("scipy", feedback):
return None
importlib.invalidate_caches()
_add_user_site_to_path(feedback)
stats = _import_module("scipy.stats", feedback)
if stats is None:
if feedback:
feedback.reportError(
'SciPy installation was attempted, but scipy.stats is still unavailable. '
'Restart QGIS and try again.'
)
return None
if feedback:
try:
feedback.pushInfo(f'SciPy loaded after installation: {stats.__file__}')
except Exception:
feedback.pushInfo('SciPy loaded after installation.')
return stats