I started working on Leap Motion Controller, and trying to execute my code, I get this error:
ImportError: No module named Leap
I added the path to the required libraries
import sys
sys.path.append("usr/lib/Leap:/path/to/lib/x86:/path/to/lib")
import thread, time
from Leap import CircleGesture, KeyTapGesture, ScreenTapGesture, SwipeGesture
What am I doing wrong?
I am working on a Linux platform: Ubuntu 13.10, 32-bit
source
share