Re: run subprocess in separate window

2006-10-27 Thread heracek
On Oct 15, 6:43 pm, "Radek" <[EMAIL PROTECTED]> wrote: > Currently when using subprocess.Popen("mycommand") all output goes to > the stdout of my launcher. > Hi, the solution is: p = subprocess.Popen(args=['command', 'arg1', 'arg2'], stdout=subprocess.PIPE,

Re: run subprocess in separate window

2006-10-16 Thread Radek
Hello, as you can see, I tried subprocess methods. But could not find the right call. Radek [EMAIL PROTECTED] wrote: > Radek a écrit : > > > Hi, > > > > I am trying to create GUI launcher of several applications using Python > > and Tkinter. > > > > Currently when using subprocess.Popen("mycomm

Re: run subprocess in separate window

2006-10-16 Thread [EMAIL PROTECTED]
Radek a écrit : > Hi, > > I am trying to create GUI launcher of several applications using Python > and Tkinter. > > Currently when using subprocess.Popen("mycommand") all output goes to > the stdout of my launcher. > > For some command line applications I need to launch them so that their > outp

run subprocess in separate window

2006-10-15 Thread Radek
Hi, I am trying to create GUI launcher of several applications using Python and Tkinter. Currently when using subprocess.Popen("mycommand") all output goes to the stdout of my launcher. For some command line applications I need to launch them so that their output goes into the separate "terminal