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
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
Have you tried the --onefile
option to PyInstaller? See the documentation on the subject.