I am trying to get the basics of Leap Motion running in python.
import os, sys, inspect, thread, time
Code can be seen here.. http://pastie.org/10883595
I get an error ....
Traceback (most recent call last):
File "Sample.py", line 6, in <module>
import Leap
ImportError: No module named Leap
The file /usr/bin/Playground_Data/Plugins/x86_64/libLeap.so exists,
and I can add /usr/bin to the PYTHONPATH but it still cannot find it.
I am using ubuntu 16.04.
Any ideas how I can make this find the library?
Kevin