How do I execute a program from within my program without blocking until the executed program finishes?
I have tried:
os.system() But it stops my program till the executed program is stopped/closed. Is there a way to allow my program to keep running after the execution of the external program?