Hi, I'm trying to run a program gives me errors that say I'm missing these modules:
Nicholass-MacBook-Air:nxt-python-2.2.2 nicholasshoemake$ python nxt_beep.py
Traceback (most recent call last):
File "nxt_beep.py", line 10, in <module>
from nxt.bluesock import BlueSock
File "/Users/nicholasshoemake/nxt-python-2.2.2/nxt/bluesock.py", line 18, in <module>
import lightblueglue as bluetooth
File "/Users/nicholasshoemake/nxt-python-2.2.2/nxt/lightblueglue.py", line 17, in <module>
import lightblue
File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/lightblue/__init__.py", line 164, in <module>
from _lightblue import *
File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/lightblue/_lightblue.py", line 27, in <module>
import Foundation
ImportError: No module named Foundation
Here is the code if anyone would like to look at it?