我在Python初学者,我一直在试图调用一个命令行应用程序,但它失败:
>>> import subprocess as s
>>> s.call("gpio -g read 17")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.6/subprocess.py", line 470, in call
return Popen(*popenargs, **kwargs).wait()
File "/usr/lib/python2.6/subprocess.py", line 623, in __init__
errread, errwrite)
File "/usr/lib/python2.6/subprocess.py", line 1141, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
不过,如果我添加shell=True
这一切开始工作。 有人能解释为什么吗?
>>> import subprocess as s
>>> s.call("gpio -g read 17", shell=True)
>>> 0