I'm trying to use the Kinect camera with python. I have installed "Python 3.6.4 :: Anaconda, Inc.", and OpenKinect.
OpenKinect was installed following the next tutorial:
https://openkinect.org/wiki/Getting_Started#Ubuntu.2FDebian
OpenKinect seems to be working well because when i run freenect-glview, it works perfectly (including motors, leds, etc).
The problem comes when i try to run a program in python. The error that appear is the next one:
import freenect
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-2-edb8594d279a> in <module>()
----> 1 import freenect
ImportError: No module named 'freenect'
It looks like the library freenect is not correctly linked with python.
I'm trying to use the Kinect camera with python. I have installed "Python 3.6.4 :: Anaconda, Inc.", and OpenKinect. OpenKinect was installed following the next tutorial: https://openkinect.org/wiki/Getting_Started#Ubuntu.2FDebian OpenKinect seems to be working well because when i run freenect-glview, it works perfectly (including motors, leds, etc). The problem comes when i try to run a program in python. The error that appear is the next one:
It looks like the library freenect is not correctly linked with python.
I'm using Ubuntu 16.04
@jgvictores