FileNotFoundError: [WinError 2] 系统找不到指定的文件

h_e*_*k_a 1 python subprocess python-3.x

我目前正在学习如何使用该模块,subprocess而且我刚刚开始阅读我的新书。立即,我收到了一条我不明白的错误消息。

Traceback (most recent call last):
  File "D:/me/Python/subprocess.py", line 3, in <module>
    proc = subprocess.Popen(['echo', 'Hello there'], stdout=subprocess.PIPE)
  File "C:\Python34\lib\subprocess.py", line 859, in __init__
    restore_signals, start_new_session)
  File "C:\Python34\lib\subprocess.py", line 1112, in _execute_child
    startupinfo)
FileNotFoundError: [WinError 2] The system can't find the specified file
Run Code Online (Sandbox Code Playgroud)

我无法弄清楚这里出了什么问题

import subprocess

proc = subprocess.Popen(['echo', 'Hello there'], stdout=subprocess.PIPE)
out, err = proc.communicate()
print(out.decode('utf-8'))
Run Code Online (Sandbox Code Playgroud)

在书中他们说这段代码应该在屏幕上打印“Hello there”,但由于某种原因,它没有。

这里有什么问题?如果对您有帮助,我目前正在使用 python 3.4.3。

pok*_*oke 5

echo不是可以执行的程序,而是 Windows 命令行解释器中可用的 shell 命令cmd.exe

为了执行shell命令,您需要传递shell=TruePopen

proc = subprocess.Popen(['echo', 'Hello there'], stdout=subprocess.PIPE, shell=True)
#                                                                        ^^^^^^^^^^
Run Code Online (Sandbox Code Playgroud)