Re: Issue bootstrapping Python - troubleshooting steps?

2024-08-06 Thread Barry Scott via Python-list
> On 6 Aug 2024, at 02:49, Piper McCorkle via Python-list > wrote: > > $ /tmp/sources/Python-3.12.4/configure --enable-shared --with-system-expat > --enable-optimizations --prefix= I assume that you must provide a value for --prefix. The linux default would be --prefix=/usr Barry -- htt

Issue bootstrapping Python - troubleshooting steps?

2024-08-05 Thread Piper McCorkle via Python-list
Hi! I'm working on a Linux From Scratch sort of system, and part of that is bootstrapping Python. I'm running into an error message in the compilation though - could anyone help me with next steps on troubleshooting the error? Error: > ./_bootstrap_python /tmp/sources/Python-3.

Bootstrapping a test environment

2013-12-17 Thread Burak Arslan
Hello list, I decided to set up a portable Jenkins environment for an open source project I'm working on. After a couple of hours of tinkering, I ended up with this: https://github.com/arskom/spyne/blob/05f7a08489e6dc04a3b5659eb325390bea13b2ff/run_tests.sh (it should have been a Makefile) This

Re: 2.x,3.x iOS static build: Fatal Python error: exceptions bootstrapping error.

2012-05-21 Thread angeljanai
well, I dont tested all, but at least error above was fixed by using build script from https://github.com/cobbal/python-for-iphone and patch from http://randomsplat.com/id5-cross-compiling-python-for-embedded-linux.html -- http://mail.python.org/mailman/listinfo/python-list

Re: 2.x, 3.x iOS static build: Fatal Python error: exceptions bootstrapping error.

2012-05-20 Thread Terry Reedy
n and link errors were fixed very quickly. Finally I tried to create a test program, which has just this: ... Py_NoSiteFlag=1; Py_Initialize(); Py_Finalize(); ... When I run it I getting "Fatal Python error: exceptions bootstrapping error." Call stack is: [opposite order from Python t

2.x,3.x iOS static build: Fatal Python error: exceptions bootstrapping error.

2012-05-20 Thread angeljanai
lag=1; Py_Initialize(); Py_Finalize(); ... When I run it I getting "Fatal Python error: exceptions bootstrapping error." Call stack is: #0 0x300cba1c in __pthread_kill () #1 0x362e43ba in pthread_kill () #2 0x362dcbfe in abort () #3 0x00127d96 in Py_FatalError at

Re: bootstrapping on machines without Python

2009-11-14 Thread Jonathan Hartley
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

Re: bootstrapping on machines without Python

2009-11-14 Thread Jonathan Hartley
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

Re: bootstrapping on machines without Python

2009-11-13 Thread mmanns
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

Re: bootstrapping on machines without Python

2009-11-13 Thread Thomas Heller
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

Re: bootstrapping on machines without Python

2009-11-13 Thread M.-A. Lemburg
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

Re: bootstrapping on machines without Python

2009-11-13 Thread Martin P. Hellwig
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

Re: bootstrapping on machines without Python

2009-11-13 Thread Tim Golden
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

bootstrapping on machines without Python

2009-11-13 Thread Jonathan Hartley
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 using this interpreter. An ap

Re: Bootstrapping

2007-05-24 Thread Mauler
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

Re: Bootstrapping

2007-05-24 Thread ici
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

Bootstrapping

2007-05-24 Thread Mauler
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 with pendrives and more practical as a standalone runtime (ie, wi