I\'m writing a programme that needs to run on both Linux and Windows and use executables (with parameters) that exist in the path. (Assumed)
Currently I\'m having tr
Ok here is how I got it to work.
env = os.environ proc = subprocess.Popen(args, env=env)