I do not know if I am very clear with the question, basically I would like to know if it is possible to capture the string of the processes that python is executing inside the cmd, something like the following:
Example:
Let's say that within a script.py we have the following line os.system('pip install google')
this line will return an output in the cmd.
something like this:
What can I do to capture that text that is displayed in the cmd and show it for example in a QLabel for example
I hope to be clear in the explanation