0


import cv2

windows下

环境:Python 3.8.5(可以通过一下指令查看)

 python --version

遇到的坑:

  1. 在程序中 import cv2 无报错,但运行程序没有效果,直接程序退出,直到注释掉该句导入,程序才正常测试。

直接在命令行中输入“python”进入python环境

输入测试,也是直接退出:

尝试使用pip,conda直接安装失败

最终解决:

  1. 下载与python版本对应的编译文件(whl)(网址:Python Extension Packages for Windows - Christoph Gohlke (uci.edu))

(由于我的Python是3.8,所以我下载的文件如下)

2.在命令行安装刚下载到本地的文件(install后跟绝对路径),安装成功

3.再次进入python环境测试,又遇坑

(RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: numpy.core.multiarray failed to import):

4.numpy的版本需要更新:

(1)查看numpy的版本:

 pip show numpy

(2)更新numpy

pip install -U numpy(如果报错需要使用 --user使用下面的指令)
pip install -U --user numpy

5.再次进入python环境测试(无报错)

6.运行初始源程序,成功~

Ubuntu下

sudo apt-get install python-opencv

本文转载自: https://blog.csdn.net/weixin_45647721/article/details/124482559
版权归原作者 Wsyoneself 所有, 如有侵权,请联系我们删除。

“import cv2”的评论:

还没有评论