14 lines
316 B
Bash
Executable File
14 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
# Debugging launch script for the tkinter player application
|
|
|
|
# Activate the virtual environment
|
|
source venv/bin/activate
|
|
|
|
# Change to the tkinter app src directory
|
|
cd tkinter_app/src
|
|
|
|
# Run the main application with full error output
|
|
python main.py
|
|
|
|
# Deactivate virtual environment when done
|
|
deactivate |