Python:如何执行外部程序
如何从程序内部执行程序而不阻塞,直到执行的程序完成?
我已经尝试过:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
考虑使用子流程模块。
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.
您需要
子进程
。You want
subprocess
.您可以使用 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.
您可以使用
subprocess
来实现:You can use
subprocess
for that: