I already found a way ... although I do not know if this is official or what ...
I downloaded the 2.5 version of PythonMac, installed it, and then added a symlink to the installation directory, for example:
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python /Library/Frameworks/Python.framework/Versions/2.5/lib/site-python
This part showed that the combined PyObjC binaries are part of the PythonMac installation, and when I do easy_install, the system package sites will not be affected. It is also worth noting that you should not conflict with the py2app system package using easy_install-ing py2app, otherwise you will encounter a typical error.
I want to know if something is wrong with this for me to be able to make a separate PyObjC application under Snow Leopard.
jopes source
share