Python:如何执行外部程序

发布于 2024-10-06 18:12:42 字数 142 浏览 2 评论 0原文

如何从程序内部执行程序而不阻塞,直到执行的程序完成?

我已经尝试过:

os.system()

但它会停止我的程序,直到执行的程序停止/关闭。有没有办法让我的程序在外部程序执行后继续运行?

How do I execute a program from within my program without blocking until the executed program finishes?

I have tried:

os.system()

But it stops my program till the executed program is stopped/closed. Is there a way to allow my program to keep running after the execution of the external program?

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

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

发布评论

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

评论(4

彼岸花ソ最美的依靠 2024-10-13 18:12:42

考虑使用子流程模块。

subprocess 生成一个新进程,您的外部应用程序将在其中运行。当其他应用程序运行时,您的应用程序将继续执行。

Consider using the subprocess module.

subprocess spawns a new process in which your external application is run. Your application continues execution while the other application runs.

别想她 2024-10-13 18:12:42

您需要子进程

You want subprocess.

纸伞微斜 2024-10-13 18:12:42

您可以使用 subprocess 模块,但 os.system 也可以工作。它通过 shell 工作,因此您只需输入一个“&”在你的字符串的末尾。就像在交互式 shell 中一样,它将在后台运行。

但是,如果您需要从中获取某种输出,您很可能希望使用 subprocess 模块。

You could use the subprocess module, but the os.system will also work. It works through a shell, so you just have to put an '&' at the end of your string. Just like in an interactive shell, it will then run in the background.

If you need to get some kind of output from it, however, you will most likely want to use the subprocess module.

¢蛋碎的人ぎ生 2024-10-13 18:12:42

您可以使用 subprocess 来实现:

import subprocess
import codecs

# start 'yourexecutable' with some parameters
# and throw the output away
with codecs.open(os.devnull, 'wb', encoding='utf8') as devnull:
    subprocess.check_call(["yourexecutable",
                           "-param",
                           "value"],
                          stdout=devnull, stderr=subprocess.STDOUT
                          )

You can use subprocess for that:

import subprocess
import codecs

# start 'yourexecutable' with some parameters
# and throw the output away
with codecs.open(os.devnull, 'wb', encoding='utf8') as devnull:
    subprocess.check_call(["yourexecutable",
                           "-param",
                           "value"],
                          stdout=devnull, stderr=subprocess.STDOUT
                          )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文