For linux you will need to set the cwd option :
spawn('./python-executable', [], { cwd: python-directory, });
For windows use :
spawn('cmd.exe',['/c', path.join(python-directory, 'python-executable.exe')]);