我尝试为python安装opencv。我用的是windows x64。我安装了numpy1.6
和python2.7
。我已经安装了opencv2.4.9
。我成功安装它们。我从this page引导。它说
现在打开你的#34; Python IDLE" (从开始>所有程序> Python 2.7> Python IDLE),然后输入以下内容: import cv2
当我运行import cv2
时,我得到以下错误:
module compiled against API version 9 but this version of numpy is 6.
我如何知道兼容版本?
我知道这个问题enter link description here。但我安装了最新的numpy版本,它没有解决我的问题。
答案 0 :(得分:2)
使用https://www.scivision.co/install-opencv-3-0-x-for-python-on-windows/ 它会带你到http://www.lfd.uci.edu/~gohlke/pythonlibs/#opencv,你可以在那里下载.whl安装程序。下载后,您可以使用它运行它 pip install some-file.whl 假设你已经安装了pip。之后你应该能够导入cv2。
我有同样的问题,我做了大量的研究,但这是唯一有效的。