Hello,<br><br>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:<br>
<br>Python 2.6.4 Stackless 3.1b3 060516 (python-2.64:82882M, Jul 14 2010, 13:31:28) <br>[GCC 4.4.1] on linux2<br>Type "help", "copyright", "credits" or "license" for more information.<br>
>>> import math<br>Traceback (most recent call last):<br>  File "<stdin>", line 1, in <module><br>ImportError: No module named math<br><br><br>I think I have a list of exactly the underlying missing parts by running the following commands<br>
<br>./configure<br>make<br><br>Which gives me the following at the end of the process:<br><br>Failed to find the necessary bits to build these modules:<br>bsddb185           dl                 imageop         <br>sunaudiodev                                    <br>
To find the necessary bits, look in setup.py in detect_modules() for the module's name.<br><br>Looking up those bits in setup.py doesnt make the any clearer to me. <br>imageop seem to not work for any 64-bit<br>bsddb185 seems to be optional<br>
sunaudiodev is specific to sunOS<br>dl also seems to not work for any 64-bit<br><br>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.<br>
<br>Any help appreciated!<br>