forked from Unstructured-IO/unstructured
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollect_env.py
251 lines (193 loc) · 5.93 KB
/
collect_env.py
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
import platform
import shutil
import subprocess
import pkg_resources
from unstructured.utils import dependency_exists
def command_exists(command):
"""
Check if a command exists in the system
Args:
command (str): The command to check
Returns:
bool: True if command exists, False otherwise
"""
return shutil.which(command) is not None
def get_python_version():
"""
Get the current Python version
Returns:
str: The current Python version
"""
return platform.python_version()
def get_os_version():
"""
Get the current operating system version
Returns:
str: The current operating system version
"""
return platform.platform()
def is_python_package_installed(package_name):
"""
Check if a Python package is installed
Args:
package_name (str): The Python package to check
Returns:
bool: True if package is installed, False otherwise
"""
result = subprocess.run(
["pip", "list"],
stdout=subprocess.PIPE,
text=True,
check=True,
)
for line in result.stdout.splitlines():
if line.lower().startswith(package_name.lower()):
return True
return False
def is_brew_package_installed(package_name):
"""
Check if a Homebrew package is installed
Args:
package_name (str): The package to check
Returns:
bool: True if package is installed, False otherwise
"""
if not command_exists("brew"):
return False
result = subprocess.run(
["brew", "list"],
stdout=subprocess.PIPE,
text=True,
check=True,
)
for line in result.stdout.splitlines():
if line.lower().startswith(package_name.lower()):
return True
result = subprocess.run(
["brew", "list", "--cask"],
stdout=subprocess.PIPE,
text=True,
check=True,
)
for line in result.stdout.splitlines():
if line.lower().startswith(package_name.lower()):
return True
return False
def get_python_package_version(package_name):
"""
Get the version of a Python package
Args:
package_name (str): The Python package to check
Returns:
str: Version of the package, None if package is not installed
"""
try:
return pkg_resources.get_distribution(package_name).version
except pkg_resources.DistributionNotFound:
return None
def get_brew_package_version(package_name):
"""
Get the version of a Homebrew package
Args:
package_name (str): The package to check
Returns:
str: Version of the package, None if package is not installed
"""
if not command_exists("brew"):
return None
result = subprocess.run(
["brew", "info", package_name],
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
text=True,
)
for line in result.stdout.splitlines():
return line
return None
def get_libmagic_version():
"""
Get the version of libmagic
Returns:
str: Version of libmagic, None if libmagic is not installed
"""
result = subprocess.run(
["file", "--version", "--headless"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
)
return result.stdout.strip()
def get_libreoffice_version():
"""
Get the version of LibreOffice
Returns:
str: Version of LibreOffice, None if LibreOffice is not installed
"""
result = subprocess.run(
["libreoffice", "--version", "--headless"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
)
return result.stdout.strip()
def main():
"""
The main function to run all checks
"""
print("OS version: ", get_os_version())
print("Python version: ", get_python_version())
if dependency_exists("unstructured"):
print("unstructured version: ", get_python_package_version("unstructured"))
else:
print("unstructured is not installed")
if dependency_exists("unstructured_inference"):
print(
"unstructured-inference version: ",
get_python_package_version("unstructured-inference"),
)
else:
print("unstructured-inference is not installed")
if dependency_exists("pytesseract"):
print(
"pytesseract version: ",
get_python_package_version("pytesseract"),
)
else:
print("pytesseract is not installed")
if dependency_exists("torch"):
print("Torch version: ", get_python_package_version("torch"))
else:
print("Torch is not installed")
if dependency_exists("detectron2"):
print("Detectron2 version: ", get_python_package_version("detectron2"))
else:
print("Detectron2 is not installed")
if is_python_package_installed("paddlepaddle") or is_python_package_installed(
"paddleocr",
):
print(
"PaddleOCR version: ",
get_python_package_version("paddlepaddle")
or get_python_package_version("paddleocr"),
)
else:
print("PaddleOCR is not installed")
if is_brew_package_installed("libmagic"):
print("Libmagic version: ", get_brew_package_version("libmagic"))
else:
libmagic_version = get_libmagic_version()
if libmagic_version:
print(f"Libmagic version: {libmagic_version}")
else:
print("Libmagic is not installed")
if platform.system() != "Windows":
if is_brew_package_installed("libreoffice"):
print("LibreOffice version: ", get_brew_package_version("libreoffice"))
else:
libreoffice_version = get_libreoffice_version()
if libreoffice_version:
print("LibreOffice version: ", libreoffice_version)
else:
print("LibreOffice is not installed")
if __name__ == "__main__":
main()