gpt4 book ai didi

作为 Windows 服务运行的 Python : OSError: [WinError 6] The handle is invalid

转载 作者:太空狗 更新时间:2023-10-29 17:26:52 36 4
gpt4 key购买 nike

我有一个 Python 脚本,它作为 Windows 服务运行。该脚本派生另一个进程:

with subprocess.Popen( args=[self.exec_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) as proc:

导致以下错误:

OSError: [WinError 6] The handle is invalid
File "C:\Program Files (x86)\Python35-32\lib\subprocess.py", line 911, in __init__
File "C:\Program Files (x86)\Python35-32\lib\subprocess.py", line 1117, in _get_handles

最佳答案

subprocess.py 中的第 1117 行是:

p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE)

这让我怀疑服务进程没有与之关联的 STDIN (TBC)

可以通过提供一个文件或空设备作为 popen 的标准输入参数来避免这种麻烦的代码。

Python 3.x 中,您可以简单地传递 stdin=subprocess.DEVNULL。例如

subprocess.Popen( args=[self.exec_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.DEVNULL)

Python 2.x 中,您需要将文件处理程序设置为 null,然后将其传递给 popen:

devnull = open(os.devnull, 'wb')
subprocess.Popen( args=[self.exec_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=devnull)

关于作为 Windows 服务运行的 Python : OSError: [WinError 6] The handle is invalid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40108816/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com