File size: 327 Bytes
2f3c093
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# Install dependencies
install_dependencies() {
    echo "Installing dependencies..."
    pip install tkinter
}

# Run the GUI
run_gui() {
    echo "Running the GUI..."
    python3 src/gui.py
}

# Main function to execute all steps
main() {
    install_dependencies
    run_gui
}

# Execute the main function
main