gpt4 book ai didi

python-3.x - 在 ubuntu 上的 python3 中运行子进程(bash 脚本)

转载 作者:行者123 更新时间:2023-12-04 18:39:02 24 4
gpt4 key购买 nike

我的结果只是空循环日志。
如果我 Handlebars 册放在终端这行命令:

python3 -m PyInstaller --onefile --name SOCIAL_NETWORK_TEST --distpath packages/projectTest --workpath .cache/ app.py
然后打包工作正常。
任何建议。
        bashCommand = "python3 -m PyInstaller --onefile --name " + self.engineConfig.currentProjectName + " --distpath " + "projects/" + self.engineConfig.currentProjectName + "/Package/" + " --workpath .cache/ main.py"
print("PACK DONE,")
# no expirience
import subprocess
process = subprocess.Popen(bashCommand.split(), stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
# self.myLogs = []
for line in iter(process.stdout.readline, b'\n'):
# self.testLog = str(line)
# self.LOGS.text = self.testLog
print ("PACKAGE:", str(line))
print("Package application for linux ended.")

最佳答案

尝试这个:

output = subprocess.run(["your_scritp.sh", "param1", "param2"], capture_output=True, text=True)
print(output.stdout)
看看你得到什么,应该是一个输出字符串,如果多行,你可以迭代

关于python-3.x - 在 ubuntu 上的 python3 中运行子进程(bash 脚本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66894868/

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