python 如何强制 subprocess.call 不等待被调用的命令完成

发布于 2024-11-01 18:14:21 字数 157 浏览 1 评论 0原文

我使用 subprocess.call 来执行 bat 文件。 subprocess.call 正在等待 bat 文件完成才能继续。我希望它启动蝙蝠然后继续。查看子进程的文档,它似乎没有不等待命令完成的选项。

除了 subprocess.call 之外,还有其他方法可以做到这一点吗?

Im using subprocess.call to execute a bat file. subprocess.call is waiting for the bat file to complete before it continues. I want it to start the bat then continue on. Looking at the documents for subprocess it didnt look like it had an option to not wait for the command to complete.

Is there a way to do this or another option besides subprocess.call?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞎闹 2024-11-08 18:14:21

subprocess.Popen 就是您正在寻找的!

subprocess.Popen is what you are looking for!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文