> > I'm a pygame user, and since I can't get pygame working on Leopard for > > the moment, I thought I'd try out pyglet instead. Unfortunately, > > the .dmg installer didn't seem to quite work. "import pyglet" doesn't > > work in either my system python or macports-installed python > > interpreter.
pyglet should have been installed into /Library/Frameworks/Python.framework/Versions/Current/lib/python2.5/site-packages/ (or ...python2.4... if that's your system copy). Type "which python" from the terminal and ensure the resulting path matches, e.g. /Library/Frameworks/Python.framework/Versions/Current/bin/python It may be that your macports python has modified the path and is running Python with a different package directory. > I seem to recall that you have to go to the pyglet directory in a terminal > window and type > python setup.py --install These instructions are for the source release -- as a fallback you can download the .tar.gz or .zip distribution and type "python setup.py install" from a console to install using whatever copy of Python actually is working. 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 -~----------~----~----~----~------~----~------~--~---
