On Jan 19, 2008 12:07 AM, besttof <[EMAIL PROTECTED]> wrote: > > it has been a while since i have fiddled with python and i have never > done something substantial with python on os x, so the following could > very well be my own stupidity :) > > anyhoo, i downloaded and ran the pyglet os x installer. the installer > seemed to complete without any problems but when i enter the following > in the python console: > >>> from pyglet import window > > it says that it can't find pyglet > > also, when i try to run the install script ( which came with the > documentation download? ) as follows: > > $ sudo python setup.py install > > it outputs 2 or 3 things and stops with the message that it can't find > the pyglet folder. > > so, anybody any clue what i did wrong?
These problems can arise due to bugs in setuptools (easy_install). Check your site-packages directory for the easy-install.pth file. If it's there, try removing it temporarily and seeing if that helps (fixing it more permanently is a far more difficult problem). Also look for old pyglet*.egg files in the site-packages directory. The location of the site-packages directory varies depending on your Python version -- check sys.path to be sure. 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 -~----------~----~----~----~------~----~------~--~---
