开发者

Executing python scripts with subprocess.call using shebang

开发者 https://www.devze.com 2023-03-14 20:49 出处:网络
I\'m writing a (somewhat) modular application in Python 3 and I\'d like to run arbitrary programs from it, said program being specified at runtime and not necessarily a python script.

I'm writing a (somewhat) modular application in Python 3 and I'd like to run arbitrary programs from it, said program being specified at runtime and not necessarily a python script.

So I use for example,

subprocess.call([spam, "-i", eggs, "-o", ham])

If spam is a python script, wit开发者_如何转开发h shebang to python3 and executable rights, I get

OSError: [Errno 8] Exec format error

if I

subprocess.call(["python3", spam, "-i", eggs, "-o", ham])

it works fine.

Do you know why? How can I run spam without specifying python3?


You need to use shell=True, and you need your array to be turned into a command string, like this:

subprocess.call(' '.join([spam, "-i", eggs, "-o", ham]), shell=True)

This will invoke the shell instead of the direct command, and the shell should be able to handle the shebang.


Try

subprocess.call(['spam.py', "-i", eggs, "-o", ham])
0

精彩评论

暂无评论...
验证码 换一张
取 消