0

I need to make an exe file from several python scripts. I have main python file that calls 2 other python scripts. In addition The scripts need few images that present in the same folder.

How do i make this whole to a single exe file?

Thanks

  • 1
    possible duplicate: https://stackoverflow.com/questions/5458048/how-can-i-make-a-python-script-standalone-executable-to-run-without-any-dependen – ginkul Sep 23 '20 at 10:49
  • Does this answer your question? [a good python to exe compiler?](https://stackoverflow.com/questions/14165398/a-good-python-to-exe-compiler) – Harshit Ruwali Sep 23 '20 at 10:50
  • Does this answer your question? [Pyinstaller: generate -exe file + folder (in --onefile mode)](https://stackoverflow.com/questions/20602727/pyinstaller-generate-exe-file-folder-in-onefile-mode) – Maurice Meyer Sep 23 '20 at 10:50
  • If you are looking for single exe go with the low level language c & c++ Python may not produce single exe. you can use cx_Freeze library to convert exe. check [this](https://stackoverflow.com/questions/41570359/how-can-i-convert-a-py-to-exe-for-python) – Akash Kumar Sep 23 '20 at 10:50

1 Answers1

0

You can use auto-py-to-exe module of python...

Tony
  • 16
  • 2