Lines Matching full:executable
1 :mod:`zipapp` --- Manage executable Python zip archives
5 :synopsis: Manage executable Python zip archives
12 single: Executable Zip Files
26 can be used to create an executable archive from a directory containing
70 to run. Also, on POSIX, make the archive executable. The default is to
71 write no ``#!`` line, and not make the file executable.
143 filename, the executable bit of the target file will be set.
153 would not be executable.
203 To make the application directly executable on POSIX, specify an interpreter
295 This will produce a standalone executable, which can be run on any machine with
299 On Unix, the ``myapp.pyz`` file is executable as it stands. You can rename the
301 Windows, the ``myapp.pyz[w]`` file is executable by virtue of the fact that
306 Making a Windows executable
315 On Windows, therefore, it is often preferable to create an executable from the
320 you end up with a single-file executable that runs your application.
348 GUI executable, and without it, a console executable.
350 To compile the executable, you can either just use the standard MSVC
366 >>> # First the CLI executable
369 >>> # Now the GUI executable
394 package cannot be run from a zip file (this is an OS limitation, as executable
403 2. If you are shipping a Windows executable as described above, you either need to
409 your application, ``sys.executable`` will be your application, and *not* a
443 If an application archive has a shebang line, it may have the executable bit set