On Nov 13, 10:25 pm, mma...@gmx.net wrote:
> On Fri, 13 Nov 2009 02:40:28 -0800 (PST)
>
> Jonathan Hartley wrote:
> > Even my very limited understanding of the issues is enough to see that
> > the idea is far from trivial.
Thanks heaps for the input from everyone. Martin Lemburg's 'chained'
appr
On Nov 13, 1:57 pm, Tim Golden wrote:
> Jonathan Hartley wrote:
> > While examining py2exe et al of late, my thoughts keep returning to
> > the idea of writing, in C or similar, a compiled stand-alone
> > executable 'bootstrapper', which:
> > 1) downloads and install a Python interpreter if none e
On Fri, 13 Nov 2009 02:40:28 -0800 (PST)
Jonathan Hartley wrote:
> Even my very limited understanding of the issues is enough to see that
> the idea is far from trivial.
[...]
> In the long run, to be useful for real projects, the bootstrapper
> would need to manage some nasty details:
> * diff
M.-A. Lemburg schrieb:
> Jonathan Hartley wrote:
>> While examining py2exe et al of late, my thoughts keep returning to
>> the idea of writing, in C or similar, a compiled stand-alone
>> executable 'bootstrapper', which:
>> 1) downloads and install a Python interpreter if none exists
>> 2) runs the
Jonathan Hartley wrote:
> While examining py2exe et al of late, my thoughts keep returning to
> the idea of writing, in C or similar, a compiled stand-alone
> executable 'bootstrapper', which:
> 1) downloads and install a Python interpreter if none exists
> 2) runs the application's Python source c
Jonathan Hartley wrote:
While examining py2exe et al of late, my thoughts keep returning to
the idea of writing, in C or similar, a compiled stand-alone
executable 'bootstrapper', which:
1) downloads and install a Python interpreter if none exists
2) runs the application's Python source code usin
Jonathan Hartley wrote:
While examining py2exe et al of late, my thoughts keep returning to
the idea of writing, in C or similar, a compiled stand-alone
executable 'bootstrapper', which:
1) downloads and install a Python interpreter if none exists
2) runs the application's Python source code usin
I've seen it, but its different, the idea behind pyinstaller is to
bundle python for a specific application, my idea is to modularize and
compact the core of python and reuse the egg concept for extensions.
The thing is that refuses to load the site-packages when the core is
compressed.
thanks agai
On May 24, 5:53 pm, Mauler <[EMAIL PROTECTED]> wrote:
> I need some help with adding bootstrap code to the core of python, the
> idea is to leave a super base core inside a zip file (python25.zip
> works right out of the box) and leave the rest in separate zip
> modules. Making it more friendly wit