gpt4 book ai didi

python - 从主脚本独立运行外部 python 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 04:34:47 25 4
gpt4 key购买 nike

我正在尝试从我的主脚本运行“外部”脚本。

我尝试了subprocess.Popen(['python', 'external_script.py'])

但是我想要运行的外部脚本包含一个循环,因此它会阻止主脚本启动。

有什么办法可以独立运行外部脚本,让主脚本正常启动吗?
(就像在单独的控制台中运行每个)。

我使用的是基于 Linux 的计算机。

谢谢,

最佳答案

subprocess.Popen(['python', 'external_script.py'],shell=False,stdin=None,stdout=subprocess.PIPE,stderr=subprocess.PIPE)应该适用于您的情况,因为这将运行

external_script.py
独立。 <a href="https://docs.python.org/2/library/subprocess.html#frequently-used-arguments" rel="noreferrer noopener nofollow">Shell=true</a>当命令字符串是外部输入时不建议使用。

关于python - 从主脚本独立运行外部 python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25669996/

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