Alec Bennett <[EMAIL PROTECTED]> wrote: >> I'm wondering how to have an application that runs from commandline >> that outputs text, but doesn't spawn a console window?
(Windows?) You should use --console. That means that the application will use an existing console or open a new one if executed from the graphical shell (double-click on the icon). If you want something in the middle (use an existing console if any, but don't open a new one), you are on your own since this is not something Windows supports by default. Under Windows, you can have either a "console mode" or a "windowed mode" executable, and that's what --console/--noconsole does. You can have a look at MSDN to the console API to see if you can achieve this behaviour. BTW, you might be better off redirecting your output to a log file. Giovanni Bajo _______________________________________________ PyInstaller mailing list [email protected] http://lists.hpcf.upr.edu/mailman/listinfo/pyinstaller
