I try to do this by using subprocess in a views.py
returnCode = subprocess.call('/Users/ivanlw/Projects/C/app') #use the absolute path
print 'returnCode', returnCode
the app file just prints a sentence, it's normal when I execute it in the terminal
but finally the debug page of django tells me OSError, the Exception Value shows: [Errno 2] No such file or directory
How to solve it?