from subprocess import Popen, PIPE path = "echo" pipe = Popen(path, stdout=PIPE) text, err = pipe.communicate() if(pipe.returncode==0) print( text, err)