gpt4 book ai didi

python - subprocess.Popen ('start' ) 失败

转载 作者:可可西里 更新时间:2023-11-01 09:40:55 30 4
gpt4 key购买 nike

在 python 中运行它会导致 WindowsError 指出它找不到指定的文件

失败:

import subprocess

subprocess.Popen('start notepad.exe')

在命令窗口中,它可以工作

start notepad.exe

我猜它是 Windows 无法找到 start[.exe?] 的路径。它位于何处,因此我可以将它添加到路径中或仅将其包含在 Popen 调用中。

谢谢

最佳答案

我不完全确定 start 是一个程序。我认为这可能是 CMD shell 的内置命令。尝试

subprocess.Popen('cmd /c start notepad.exe')

此外,任何不使用 just 的原因:

subprocess.Popen('notepad.exe')

关于python - subprocess.Popen ('start' ) 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9137303/

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