I've been trying to use os.system to open Xampp automatically and then run my script made with tkinter. But the problem is that the script stops until I close manually the subprocess.
Here an example.
import os direccion = 'C:/xampp/xampp-control.exe' os.system(direccion) print("Hello world") The print() is not working, and just starts to run when I close xampp manually. What can I do to, at the same time is opening xampp, keep running the script?