mathieu wrote: > Hello, > > I have recently started using PyInstaller and I am trying to > evaluate if it can do what I am looking for. Right now my application > is not bundle at all, all *.pyc are distributed. This is a tedious > work to do, the nice thing though is that I can change only one file > (let say to change a configuration file) and that's it ! No need for > the customer to redownload the whole application. > > Is there a way of doing this with PyInstaller ? Should I create a > separate CArchive ? >
You want the --onefile option... See,e.g., http://pyinstaller.hpcf.upr.edu/docs/Manual_v1.1.html python Makespec.py [opts] <scriptname> [<scriptname> ...] Where allowed OPTIONS are: -F, --onefile produce a single file deployment (see below). -D, --onedir produce a single directory deployment (default). -K, --tk include TCL/TK in the deployment. -a, --ascii do not include encodings. The default (on Python versions with unicode support) is now to include all encodings. -d, --debug use debug (verbose) versions of the executables. -w, --windowed, --noconsole Use the Windows subsystem executable, which does not open the console when the program is launched. (Windows only) -c, --nowindowed, --console --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/PyInstaller?hl=en -~----------~----~----~----~------~----~------~--~---
