Reputation: 23
I'm using Python 3.6 and after I tried to install the v4l2capture
package, I got the following error message:
"v4l2capture.c:20:10: fatal error: libv4l2.h: No such file or directory"
Why is this and how do I solve it?
Upvotes: 2
Views: 2916
Reputation: 2033
You have to install libv4l-dev
package in Debian/Ubuntu, or libv4l-devel
in RH.
Upvotes: 1