-1

I want to execute three python script that I have developed. I found one doubt, how could I do it using a python script?

I want to convert it into a .exe, because our solution is thought to be executed in machines without python installed so having an unique script would be helpful.

Edit: I don't know the cause of the closure, I know how to use pyinstaller, my question was how can I execute 3 python using a python script or if it is possible.

Any suggestion? Thanks!

2 Answers2

0

To package script and all dependencies you can use Pyinstaller, see here. To execute multiple script (or exe) you can write a bat file that start the 3 exe or use them as services, based on your needs.

s_frix
  • 323
  • 2
  • 11
-1

Use pyinstaller it can convert python to executables. You can get it up and running simply by doing

pip install pyinstaller
pyinstaller myfile.py
feverdreme
  • 467
  • 4
  • 12