Re: [Pyobjc-dev] OK, I'm already stymied.
Brought to you by:
ronaldoussoren
From: <bb...@ma...> - 2003-05-06 04:44:12
|
On Monday, May 5, 2003, at 20:05 US/Pacific, Gary Robinson wrote: > Whether I am running python 2.2 or 2.3, the statement > > import PyObjC > > fails with > > ImportError: No module named PyObjC There isn't a PyObjC Module -- it is flattened up into the regular import space by a magic file in site-packages. Try: [bumbox:~/bbum-developer/sourceforge/pyobjc] bbum% /usr/bin/python Python 2.2 (#1, 07/14/02, 23:25:09) [GCC Apple cpp-precomp 6.14] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import Foundation >>> |