python3无法导入cv2

时间:2017-10-18 03:34:29

标签: python-3.x cv2

我使用python2.7,并安装了opencv,我使用python2.7成功导入cv2。但是当我尝试使用python3.4导入cv2时,它说没有名为'cv2'的模块,怎样才能用python3导入cv2

enter image description here

1 个答案:

答案 0 :(得分:3)

你需要为python3安装openCV - 你可以指定你想要使用的python版本:

for python3:

python3 -m pip install opencv-python

for python2.7:

python2.7 -m pip install opencv-python