I'm using Tkinter (Tk version 8.4) to create a GUI which allows a user to build a text "input" file. This text file is readable by another program, which makes calculations and then spits out an output file. I have created a menu option (using the OptionMenu widget) to run the calculation program from my GUI by clicking a "run" option. However, to make sure that the calculations have been made correctly and that the program ran correctly, you need to keep an eye on the terminal. Since the point of this GUI is to make text file building and running the calculations easier, it would be useful to display the terminal's output in a textbox or a frame within my Tkinter GUI.
I've googled and googled and googled but I can't seem to find a good, general answer to this problem. All I'd like to do is display the terminal within my GUI. How do I do this (I assume it would be only a few lines of code)?
Thanks in advance!