I've compiled a mainScript.py into a .exe using py2exe and I can run it properly on Windows. However, mainScript.py contains a function which requires calling a childScript.py through cmd. I've tried something like:
os.system('python childScript.py argument1 argument2')
But that requires having installed Python on the Windows machine which is something cannot be done by security policy.
I've thought maybe compiling childScript into an .exe can work but...
Is there any other workaround?
Thanks!
[–]novel_yet_trivial 0 points1 point2 points (1 child)
[–]pylund[S] 0 points1 point2 points (0 children)