On 23Apr2013 06:44, Tim Gray <lists+m...@protozoic.com> wrote:
| I'm guessing that script needs pyobjc installed to work.  I'm not
| quite sure if OS X comes with that preinstalled and/or what versions
| of OS X have it.  So you might need to deal with that.

I think it works out of the box. I'm on Mountain Lion, but all the
previous revisions worked too. (Um, I do have XCode installed but
I don't think you need it for this.)

The only issue I've found is using a 3rd party Python as opposed
to the Python that ships with MacOSX. I use the MacPorts python a
lot (because I get a bunch of modules from MacPorts) and I have a
helper module for the pyobjc that tweaks sys.path if necessary:

  import sys
  objc_path = 
'/System/Library/Frameworks/Python.framework/Versions/Current/Extras/lib/python/PyObjC'
  if objc_path not in sys.path:
    sys.path.append(objc_path)

It's here if you like:

  
https://bitbucket.org/cameron_simpson/css/src/tip/lib/python/cs/app/osx/objc.py

My related modules just go:

  # need to import .objc first to tweak sys.path if necessary
  from .objc import convertObjCtype

to save embedding this guff everywhere.

Cheers,
-- 
Cameron Simpson <c...@zip.com.au>

But in our enthusiasm, we could not resist a radical overhaul of the
system, in which all of its major weaknesses have been exposed, analyzed,
and replaced with new weaknesses.       - Bruce Leverett

Reply via email to