我想在 flask 中运行其他 python 脚本

问题描述 投票:0回答:0

我想运行另一个 python3 脚本。 我在 linux 和 flask 框架中的 flask 运行时运行脚本

所以我也在网上搜索了很多想法,我尝试了很多东西

所以我试过了

os.system("python3 /home/test/xx.py")
subprocess.run("python3 /home/test/xx.py")
runpy.run_path(path_name='/home/test/xx.py')

所有的东西都不起作用 此外,它不起作用包括留下任何日志

它描述了我希望当我点击按钮时通常会生成结果文件

但是当我点击什么都没有发生

那么有什么办法可以运行其他 python 脚本吗? 请教我 谢谢

python subprocess runpy
© www.soinside.com 2019 - 2024. All rights reserved.