gpt4 book ai didi

python调用外部程序非阻塞方式

转载 作者:太空宇宙 更新时间:2023-11-03 14:27:56 25 4
gpt4 key购买 nike

有没有办法在 python 中调用外部程序而不等待其执行完成?

我试过了,但没有成功:

os.system("external_program &")

通常,如果我在 bash shell 中调用 external_program &,它会作为后台进程执行。我怎样才能在 python 中做到这一点?对于我的特殊情况,创建另一个线程不起作用。主 python 脚本完成后,外部程序应继续执行。

最佳答案

是的,使用 subprocess module .例如:

p = subprocess.Popen(['external_program', 'arg1', 'arg2'])
# Process is now running in the background, do other stuff...
...
# Check if process has completed
if p.poll() is not None:
...
...
# Wait for process to complete
p.wait()

关于python调用外部程序非阻塞方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16986658/

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