<br />Hi,<br /><br />I would like to start a python script from my QGIS plugin using the Windows command shell. But nothing happens... :-/<br /><br />If run Python in a Windows command shell, this 3-liner of code actually works:<br /><br />import subprocess<br />a = "start python " + r"C:\path\to\myscript.py"<br />subprocess.call(a, shell=True)<br /><br />Any suggestions how to do it?<br /><br />Thanks, Torsten