我试过同时使用 subprocess() 和 os.system()
import os
def whatever(request):
open file
code write to file
close file
os.system(command theFileIwroteto argument)
现在代码很好。我打开了 python 并从字面上复制并粘贴了确切的命令,它工作正常。
Python:
import os
os.system(command theFileIwroteto argument)
为什么它可以使用 python shell 工作但拒绝从 django 视图文件执行?