没有名为“ picamera”的模块

时间:2019-03-06 16:50:51

标签: python raspberry-pi

我关注了这个网站 (https://www.pyimagesearch.com/2015/03/30/accessing-the-raspberry-pi-camera-with-opencv-and-python/)来设置我的picamera,但是我对picamera模块有问题。我确实安装了picamera模块,而这张照片是从点子冻结开始的。

https://imgur.com/a/3y5b2rO

您可以看到我已经有picamera 1.13,但是当我尝试test_image.py时,它显示“没有名为'picamera'的模块”。

https://imgur.com/a/XMEXwXJ

我已经卸载并安装了很多次,但是错误仍然存​​在。我该如何解决?

test_image.py

# import the necessary packages
from picamera.array import PiRGBArray
from picamera import PiCamera
import time
import cv2

# initialize the camera and grab a reference to the raw camera capture
camera = PiCamera()
rawCapture = PiRGBArray(camera)

# allow the camera to warmup
time.sleep(0.1)

# grab an image from the camera
camera.capture(rawCapture, format="bgr")
image = rawCapture.array

# display the image on screen and wait for a keypress
cv2.imshow("Image", image)
cv2.waitKey(0)

7 个答案:

答案 0 :(得分:2)

对于python3,您只需要在命令下面尝试即可。请记住,您需要在主目录中打开终端。

sudo -H apt install python3-picamera
sudo -H pip3 install --upgrade picamera[array]

让我知道它是否有效!

答案 1 :(得分:0)

当您运行命令 pip3 install picamera 时,如果已经安装了picamera,它将显示已满足要求,后跟 path 。现在复制该路径并将其包含在您的程序中,如下所示:

    import sys
    sys.path.append('paste the copied path here')
    from picamera.array import PiRGBArray
    from picamera import PiCamera

答案 2 :(得分:0)

我遇到了同样的问题,直到我发现我没有在PiCamera中将c大写

答案 3 :(得分:0)

尝试以下命令: https://www.raspberrypi.org/documentation/linux/software/python.md

我假设 picamera 模块的路径由于某种原因搞砸了,所以尝试清除它并重新安装它。

清除使用:

sudo apt purge python3-picamera

首先确保一切都是最新的:

sudo apt update

那么:

sudo apt install python3-picamera

答案 4 :(得分:-1)

按照以下步骤安装picamera模块

1.On Windows, execute: set READTHEDOCS=True

1'.On Unix based systems, execute: export READTHEDOCS=True

2.Now execute: pip install picamera

答案 5 :(得分:-1)

Pi 相机可能无法在 Windows 上运行尝试以下命令,它会解决问题

执行:

set READTHEDOCS=True

现在执行:

pip install picamera

答案 6 :(得分:-1)

当我有一个名为 picamera.py 的文件时,我遇到了同样的问题,所以我重命名了它,因为更多的问题。 我希望你也一样,否则就超出我的能力了。