27

Possible Duplicate:
py2exe - generate single executable file

I made a application.exe from application.py using "pyinstaller".There are so many .dll file generated during this process. How can i make a application with single .exe file

Community
  • 1
  • 1
EbinPaulose
  • 1,129
  • 3
  • 14
  • 26
  • 11
    This is not a duplicate, since it's asking about `pyinstaller`. The other question is asking about `py2exe`. – Zenadix Feb 05 '15 at 15:04
  • 1
    Actually the top answer there does answer your question: https://stackoverflow.com/a/112713/4752883 – alpha_989 Feb 25 '18 at 01:46

1 Answers1

64

Have you tried the --onefile option to PyInstaller? See the documentation on the subject.

aknuds1
  • 65,625
  • 67
  • 195
  • 317
  • 4
    I thought I was going to need some other packer or something, what a simple solution to something I was already using. Thanks! – DeeJayh Apr 29 '17 at 21:07