-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_linux.sh
More file actions
29 lines (24 loc) · 1.58 KB
/
Copy pathbuild_linux.sh
File metadata and controls
29 lines (24 loc) · 1.58 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
#!/bin/bash
# Mohawk Inference Engine GUI - Linux Build Script
# Version: 2.1.0
echo ════════════════════════════════════════════════════════════
echo MOHAWK INFERENCE ENGINE GUI - Linux Build System v2.1.0
echo ════════════════════════════════════════════════════════════
echo
# Check Python version
python3 --version
echo
# Install dependencies
echo Installing dependencies...
pip install -r requirements.txt
echo
# Build executable
echo Building executable...
pyinstaller --name=Mohawk-Inference-Engine --onefile --windowed --add-data=mohawk_gui/resources:resources --hidden-import=mohawk_gui.main --hidden-import=mohawk_gui.auth_manager --hidden-import=mohawk_gui.connection_pool --hidden-import=mohawk_gui.metrics_buffer --hidden-import=mohawk_gui.error_recovery --hidden-import=mohawk_gui.monitoring --hidden-import=mohawk_gui.audit_logger -p mohawk_gui
echo
echo ════════════════════════════════════════════════════════════
echo BUILD COMPLETE!
echo ════════════════════════════════════════════════════════════
echo
echo Executable location: dist/Mohawk*-Inference-Engine
echo