本文介绍了如何分离由 subprocess.call 运行的程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 subprocess.call 使用我的默认应用程序打开一个 pdf 文件,如下所示:

I am opening a pdf file with my default application using subprocess.call, like this:

subprocess.call(["xdg-open", pdf], stderr=STDOUT)

但是,当运行它时,进程附加到终端,我想分离它.基本上,我想运行它,然后能够将终端用于其他事情.

But, when running that, the process is attached to the terminal and I want to detach it. Basically, I want to run that and then be able to use the terminal for other stuff.

我该怎么做?

推荐答案

您可以使用 Popen 为此.

You can use Popen for this.

from subprocess import Popen, PIPE, STDOUT
p = Popen(["xdg-open", pdf], stderr=STDOUT, stdout=PIPE)
# do your own thing while xdg-open runs as a child process
output, _ = p.communicate()

这篇关于如何分离由 subprocess.call 运行的程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 12:42