On Jan 21, 2008 11:30 AM, Nathan <[EMAIL PROTECTED]> wrote: > I haven't been following this thread very closely, but I just tried to > install pyglet on my kids' iMac G3 running Tiger, but pyglet doesn't > seem to install at all--just AVBin. Is this the same issue that you > ran into, or am I just missing the correct version of python? I've > installed python 2.4.4 with MacPorts and 2.5.1 from Python.org. > > Check out the attached screenshot.
The installer looks in the following locations: /Library/Python/2.5/site-packages /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages /opt/local/lib/python2.4/site-packages /opt/local/lib/python2.5/site-packages These correspond to the Leopard built-in Python 2.5, the python.org 2.4 and 2.5 distros, and the MacPorts 2.4 and 2.5 distros, respectively. Your /usr/bin/python is Python 2.3, which pyglet doesn't support. Your /opt/local/bin/python should match up with the MacPorts path (/opt/local/lib/python2.4/site-packages) and should have been found. Your /usr/local/bin/python should match up with the python.org path (/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages) and should have been found. I would check first that these paths exist, and secondly that the user you were running as is an administrator (belongs to the admin group). I'm not yet sure if this is the same permissions problem that other are having (see issue 220). In the meantime, if you're more interested in getting pyglet going than debugging my installer, doing a source install should work fine. Thanks for the feedback 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 -~----------~----~----~----~------~----~------~--~---
