For this beta release I decided to scrap my tiger python install and use the leopard python. So I rm -rf'd /Library/Frameworks/ Python.framework, modified my path so I am using /usr/bin/python, then did a pyglet install using the .dmg. Pyglet correctly installed into / System/Library/Frameworks/Python.framework/Versions/Current/lib/ python2.5/site-packages/pyglet but when I try to import any of the pyglet modules I get a module not found.
A close inspection of python paths reveal that site-packages for leopard python is in /Library/Python/2.5/site-packages . I did the following: ln -s /System/Library/Frameworks/Python.framework/Versions/Current/ lib/python2.5/site-packages/pyglet ./ in /Library/Python/2.5/site-packages and it solved the problem. Perhaps the installed needs 1 more tweak? Cheers, Steve > > Looky here, another Beta! It awaits your collection at http://www.pyglet.org > > The major changes in this Beta release are: > > * Font rendering on Windows uses a completely new implementation that > fixes antialiasing issues. > * The Mac OS X installer now works with more Python distributions. > > The following minor API changes were introduced, for future > compatibility: > > * The Window() constructor no longer accepts width and height > parameters if fullscreen=True. > * The tex_coords attributes of pyglet.image.Texture and > pyglet.font.base.Glyph are now flattened tuples. > > There are also quite other fixes detailed in the CHANGELOG at > http://pyglet.googlecode.com/svn/tags/pyglet-1.0beta3/CHANGELOG. > > As usual, please report any problems found to the tracker at > http://code.google.com/p/pyglet/issues, or just post them here if you > don't have a Gmail account. > > Cheers and thanks for all the helpful feedback so far, > Alex. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
