Hi,<br><br>I'd like to call an external application (firefox) from a python program (a PyQT GUI), but I want the external application to run in the background, I mean I do not want my python calling program to wait till the external subprocess terminates.<br>
I've tried this:<br><br>call(["firefox", "<a href="http://www.python.org">http://www.python.org</a>"])<br><br>but my PyQT interface freezes until I terminate Firefox.<br>Is there any parameter I need to use with call so that the python calling program doesn't wait for the termination of the subprocess?<br>
<br>Many thanks<br>