I’m trying to launch a new process and have it run in a new window. The process I’m trying to spawn is a console application, and I want a new console window to open, in which that process runs. Ideally the new process would also be detached from the current process, i.e. should not be killed when I kill the main julia process.
I’m trying
spawn(Cmd(`$(joinpath(JULIA_HOME,Base.julia_exename())) -i`, windows_hide=false, detach=true))
But that doesn’t open a new window… I’m on Windows for this.
Thanks,
David