[Stackless] Stackless Digest, Vol 78, Issue 7

feng wang wangfeng3769 at gmail.com
Fri Jul 16 02:41:51 CEST 2010


I encounttered the same on ubuntu10.04 ,but the diffrence is  the
third-party-eggs doesn't  work ,when import BeautifulSoup (i.g),ImportError
often happens ,Even I install it under the file /opt/.

2010/7/15 <stackless-request at stackless.com>

> Send Stackless mailing list submissions to
>        stackless at stackless.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://www.stackless.com/mailman/listinfo/stackless
> or, via email, send a message with subject or body 'help' to
>        stackless-request at stackless.com
>
> You can reach the person managing the list at
>        stackless-owner at stackless.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Stackless digest..."
>
>
> Today's Topics:
>
>   1. Compile Error (Adam Faulconbridge)
>   2. Re: Compile Error (Ariel Ben Yehuda)
>   3. segmentation fault in PyEval_EvalFrame_value - need       patch for
>      stackless 2.5.2 (Natarajan Nallusamy)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 14 Jul 2010 13:49:21 +0100
> From: Adam Faulconbridge <asf500 at york.ac.uk>
> To: stackless at stackless.com
> Subject: [Stackless] Compile Error
> Message-ID:
>        <AANLkTim52HrIi94q4ErYZPuglg6lF2MtkLIhGdrvTj3w at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hello,
>
> I am trying to install Stackless Python 2.6.4 on Ubuntu 64-bit 9.10. The
> actual executable seems to work fine, but some of the python standard
> libraries seem to be missing (e.g. time, math) in the resulting install.
> This appears as:
>
> Python 2.6.4 Stackless 3.1b3 060516 (python-2.64:82882M, Jul 14 2010,
> 13:31:28)
> [GCC 4.4.1] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
> >>> import math
> Traceback (most recent call last):
>  File "<stdin>", line 1, in <module>
> ImportError: No module named math
>
>
> I think I have a list of exactly the underlying missing parts by running
> the
> following commands
>
> ./configure
> make
>
> Which gives me the following at the end of the process:
>
> Failed to find the necessary bits to build these modules:
> bsddb185           dl                 imageop
> sunaudiodev
> To find the necessary bits, look in setup.py in detect_modules() for the
> module's name.
>
> Looking up those bits in setup.py doesnt make the any clearer to me.
> imageop seem to not work for any 64-bit
> bsddb185 seems to be optional
> sunaudiodev is specific to sunOS
> dl also seems to not work for any 64-bit
>
> I assume the missing stackless python library modules are because I am
> missing dependencies somewhere. I have a working Python 2.6.4 install, so
> if
> I can point at those libraries and work that would be fine too.
>
> Any help appreciated!
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://www.stackless.com/pipermail/stackless/attachments/20100714/92450ff2/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 2
> Date: Wed, 14 Jul 2010 17:28:36 +0300
> From: Ariel Ben Yehuda <ariel.bys at gmail.com>
> To: The Stackless Python Mailing List <stackless at stackless.com>
> Subject: Re: [Stackless] Compile Error
> Message-ID:
>        <AANLkTimWX8Wit9cUfnMQefAqf-SL2nptHN7Tv9uOwDI3 at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> I had this problem for a long time. I don't know the source,  but this
> fixes
> it:
> # make altbininstall
> # make libinstall
> # make inclinstall
> # make libainstall
> # make sharedinstall
> # make oldsharedinstall
> # make bininstall
> # make maninstall
>
> On Wed, Jul 14, 2010 at 3:49 PM, Adam Faulconbridge <asf500 at york.ac.uk
> >wrote:
>
> > Hello,
> >
> > I am trying to install Stackless Python 2.6.4 on Ubuntu 64-bit 9.10. The
> > actual executable seems to work fine, but some of the python standard
> > libraries seem to be missing (e.g. time, math) in the resulting install.
> > This appears as:
> >
> > Python 2.6.4 Stackless 3.1b3 060516 (python-2.64:82882M, Jul 14 2010,
> > 13:31:28)
> > [GCC 4.4.1] on linux2
> > Type "help", "copyright", "credits" or "license" for more information.
> > >>> import math
> > Traceback (most recent call last):
> >   File "<stdin>", line 1, in <module>
> > ImportError: No module named math
> >
> >
> > I think I have a list of exactly the underlying missing parts by running
> > the following commands
> >
> > ./configure
> > make
> >
> > Which gives me the following at the end of the process:
> >
> > Failed to find the necessary bits to build these modules:
> > bsddb185           dl                 imageop
> > sunaudiodev
> > To find the necessary bits, look in setup.py in detect_modules() for the
> > module's name.
> >
> > Looking up those bits in setup.py doesnt make the any clearer to me.
> > imageop seem to not work for any 64-bit
> > bsddb185 seems to be optional
> > sunaudiodev is specific to sunOS
> > dl also seems to not work for any 64-bit
> >
> > I assume the missing stackless python library modules are because I am
> > missing dependencies somewhere. I have a working Python 2.6.4 install, so
> if
> > I can point at those libraries and work that would be fine too.
> >
> > Any help appreciated!
> >
> > _______________________________________________
> > Stackless mailing list
> > Stackless at stackless.com
> > http://www.stackless.com/mailman/listinfo/stackless
> >
>
>
>
> --
> - Ariel Ben-Yehuda
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://www.stackless.com/pipermail/stackless/attachments/20100714/973b261e/attachment-0001.html
> >
>
> ------------------------------
>
> Message: 3
> Date: Wed, 14 Jul 2010 14:30:44 -0700
> From: Natarajan Nallusamy <natarajann at gmail.com>
> To: stackless at stackless.com
> Subject: [Stackless] segmentation fault in PyEval_EvalFrame_value -
>        need    patch for stackless 2.5.2
> Message-ID:
>        <AANLkTime41Hr3337Y8hHwruhICjtj_oW28S7UP1L2Yyz at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Hi,
>
> we are using stackless 2.5.2 and facing segfault in PyEval_EvalFrame_value.
> learnt from other mail thread that the fix is available in 26 maint branch.
>
> Can this be backported to stackless 2.5.2 ? I would like to get the fix
> details to add a patch for our stackless 2.5.2 version.
>
> #0  0x1009f940 in PyEval_EvalFrame_value (f=0x110f51d0, throwflag=0,
> retval=Cannot access memory at address 0x7fddf4b8
> ) at Python/ceval.c:907
> 907     PUSH(retval); /* we are back from a function call */
> (gdb) bt
> #0  0x1009f940 in PyEval_EvalFrame_value (f=0x110f51d0, throwflag=0,
> retval=Cannot access memory at address 0x7fddf4b8
> ) at Python/ceval.c:907
> Cannot access memory at address 0x7fddf540
> (gdb) list
> 902
> 903
> 904 #ifdef STACKLESS
> 905   if (f->f_execute == PyEval_EvalFrame_value) {
> 906         /* this is a return */
> 907     PUSH(retval); /* we are back from a function call
>
> Thanks,
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: <
> http://www.stackless.com/pipermail/stackless/attachments/20100714/f82b58fb/attachment-0001.html
> >
>
> ------------------------------
>
> _______________________________________________
> Stackless mailing list
> Stackless at stackless.com
> http://www.stackless.com/mailman/listinfo/stackless
>
> End of Stackless Digest, Vol 78, Issue 7
> ****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.stackless.com/pipermail/stackless/attachments/20100716/f50b6251/attachment-0001.html>


More information about the Stackless mailing list