On Nov 22, 2007 11:08 AM, Shu Ning Bian <[EMAIL PROTECTED]> wrote: > Alex, I did some poking on my macbook, it would appear on leopard > python moved into /System/Library/Frameworks/Python.framework/Versions/ > Current/. Perhaps there can be a check in the dmg installer to detect > leopard'ness and install appropriately? > > Currently I am using the path modification I mentioned early to run > the python installed into /Library/Frameworks/Python.framework/ > Versions/Current/, which is an older install of python. I am not quite > sure where it came from. (perhaps from my upgrade from tiger?)
Ok, it turns out that the Python that's bundled with Mac OS X has always been in /System/Library, and the one downloaded from python.org is installed into /Library. Tiger and earlier shipped with Python 2.3, so if you were using 2.4 or 2.5 on Tiger you would've installed it from python.org at some point. Upgrading to Tiger does not remove this installation, and it will continue to be the default (the python.org installer modifies your ~/.bashrc or ~/.cshrc file). I've changed the pyglet installer in r1429 to also install into the system (/System/Library) Python if it is version 2.5. It will also install into any 2.4 or 2.5 Python in /Library it finds. You can see exactly what's going on if you click the Customize button during the installation dialog. You'll see these changes in the next release. In the meantime, I suggest using the source release to install into your favourite Python. 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 -~----------~----~----~----~------~----~------~--~---
