Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #20486 > unrolled thread

Re: Stand-Alone Python Executable Skeletons

Started byChris Rebert <clp2@rebertia.com>
First post2012-02-15 14:55 -0800
Last post2012-02-15 14:55 -0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Stand-Alone Python Executable Skeletons Chris Rebert <clp2@rebertia.com> - 2012-02-15 14:55 -0800

#20486 — Re: Stand-Alone Python Executable Skeletons

FromChris Rebert <clp2@rebertia.com>
Date2012-02-15 14:55 -0800
SubjectRe: Stand-Alone Python Executable Skeletons
Message-ID<mailman.5865.1329346556.27778.python-list@python.org>
On Wed, Feb 15, 2012 at 2:43 PM, Calvin Spealman <ironfroggy@gmail.com> wrote:
> I've recently been looking into different options to package python
> code into stand-alone executables, with tools like Py2EXE and
> PyInstaller, but I'm left feeling a little lost. Documentation seems
> sparse on all of them, the setups a little unusual to me. It feels
> like they could be a lot simpler, or that I could put in some
> preliminary work to make it easier for my needs in the long run. I'm
> hoping someone can help me pick the best option.
>
> What I would love to do (or know if it is possible) is have a set of
> executables, for Linux, Windows, and OS X, with a Zip archive appended
> to the end of them. I know the zip archive at the end of an executable
> works with EXE and ELF binaries, but does it work for whatever OSX
> uses (I have no mac machines, currently)?

OS X has application bundles:
http://en.wikipedia.org/wiki/Application_bundle

py2app can generate them:
http://svn.pythonmac.org/py2app/py2app/trunk/doc/index.html

Cheers,
Chris

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web