Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named objc

I'm trying to use cocoa-python with Xcode but it always calls up the error:

Traceback (most recent call last):
  File "main.py", line 10, in <module>
    import objc
ImportError: No module named objc

This seems to be because dispite all my attempts to install or find objc and the other modules used by that file, they are simply not on my computer that I can tell, so does anyone know where I can download the actual files (or could put up their own copies?) as in objc.py, Foundation.py, AppKit.py and PyObjCTools.py?

like image 723
user573949 Avatar asked Jan 13 '11 08:01

user573949


2 Answers

In MacOSX put on console:

pip install -U pyobjc

like image 74
Anderson Rodrigues Avatar answered Oct 15 '22 09:10

Anderson Rodrigues


http://pyobjc.sourceforge.net/ is the homepage of the whole PyObjC project, so if for some reason it isn't installed along OS X, you can always download it from there.

like image 38
Shadikka Avatar answered Oct 15 '22 10:10

Shadikka