I'm trying to run a python script from another script using the following method:
from subprocess import call
call(['python script.py'])
but I'm getting the following error:
OSError: [Errno 2] No such file or directory
The files are both in the same directory. Help please.