I am working on a project with some friends and we're facing a bit of a problem with our implementation of picamera
.
We're trying to import cv2
and picamera
at the start of the program (working with Python 3) and so far importing cv2
works just fine.
When we're trying to import picamera it tells us this: ImportError: No module named picamera
.
I made sure we installed picamera
with "sudo apt-get install python-picamera
" and with "...python3-picamera
" and it tells me the modules are installed.
Does anyone know how to fix this problem?
Our goal is to take a photo every 0.5s and use it for our OpenCV-program, and we wanted to do that with picamera
, and only that.
Might the problem be that our project is located on the Desktop and not in some kind of Project folder or something?
Thanks in advance.