I am working on a GUI with tkinter. What I want to do is to embed a LIVE console in a tkinter frame. Can anyone help? I know that copying the content of the console and then writing it in the frame as text is a solution to display the content, but what I want to do is to display the LIVE content of the console.
Asked
Active
Viewed 343 times
0
-
No, you can't do this with tkinter. – martineau Jan 20 '21 at 10:02
-
1Is it something like https://stackoverflow.com/questions/7253448/how-to-embed-a-terminal-in-a-tkinter-application that you want to do? Are you talking about a system terminal or a python command line? Do you want it to be interactive (taking user input) or just redirect the output of your live console to your tkinter GUI? – j_4321 Jan 20 '21 at 10:24