In article <[email protected]>, Joost Rekveld <[email protected]> wrote: > and everybody writes PyObjc is already installed on Snow Leopard, but I don't > know what path to add to my Pythonpath for it to be found ? Would it be that > simple ?
You don't need to add anything if you use one of the Apple-supplied Pythons in Snow Leopard: $ /usr/bin/python2.6 Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51) [GCC 4.2.1 (Apple Inc. build 5646)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import objc >>> ^D $ /usr/bin/python2.5 Python 2.5.4 (r254:67916, Jul 7 2009, 23:51:24) [GCC 4.2.1 (Apple Inc. build 5646)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import objc >>> ^D -- Ned Deily, [email protected] _______________________________________________ Pythonmac-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/pythonmac-sig
