[Pyobjc-dev] PyObjC 1.1a0 binary installer
Brought to you by:
ronaldoussoren
From: Martina O. <Ma...@Oe...> - 2004-02-08 17:18:24
|
Hi, > the link to the 1.1a0 binary installer on the PyObjC homepage is > wrong. It should be: > http://pyobjc.sourceforge.net/prerelease/pyobjc-1.1a0-panther.dmg The binary installer overwrites the site-packages with an empty folder. This breaks PyObjC itself: Miraculix:~ martina$ python Python 2.3 (#1, Sep 13 2003, 00:49:11) [GCC 3.3 20030304 (Apple Computer, Inc. build 1495)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import AppKit Traceback (most recent call last): File "<stdin>", line 1, in ? ImportError: No module named AppKit ...as well as all other packages installed into /Library/Python/2.3/ To fix this: sudo ln -s /Library/Python/2.3/ /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/ site-packages ciao Martina |