Pyinstaller: generate -exe file + folder (in --onefile mode)
问题 Now i'm working with Pyinstaller. I have an script which get images from a img folder.. /python |----/img |----|----icon1.ico |----|----icon2.ico |----maint.py My script to generate .exe is pyinstaller.py --windowed --noconsole --clean --onefile maint.py the problem is that only generate the .exe file but the whole folder /img is omitted. Question: which aditional syntax do I need to put in the previous line in order to get automatically the .exe file + /img folder? Update 12/18/2013 I mean: