Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过运行为 python2 安装了 opencv:
sudo apt-get install python-opencv
但在跑步时
import cv2
我收到以下错误:
Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named cv2
我的朋友做了同样的事情,它正在他的机器上工作。
我自己也有同样的问题,我通过首先使用以下命令安装 pip 解决了它
sudo apt-get install python-pip
然后我安装了opencv,
pip install opencv-python
然后我尝试在 python 中导入 cv2,它就像一个魅力:
注意:导入必须在 python shell 内完成