码迷,mamicode.com
首页 > 系统相关 > 详细

MAC 下安装opencv遇到问题的解决方法(安装homebrew, wget)

时间:2015-08-26 01:37:39      阅读:758      评论:0      收藏:0      [点我收藏+]

标签:

遇到问题:

(1)         Mac安装OpenCV下载ippicv_macosx_20141027.tgz失败解决方案                     

先附上当时的报错信息:

-- ICV: Downloading ippicv_macosx_20141027.tgz...
CMake Error at 3rdparty/ippicv/downloader.cmake:71 (file):
  file DOWNLOAD HASH mismatch

    for file: [/Users/zhaozhaokaliang/opencv-3.0.0/3rdparty/ippicv/downloads/macosx-9662fe0694a67e59491a0dcc82fa26e0/ippicv_macosx_20141027.tgz]
      expected hash: [9662fe0694a67e59491a0dcc82fa26e0]
        actual hash: [14cb99aa35c53adfb648ca84e9790a82]
             status: [56;"Failure when receiving data from the peer"]
................

简单来说就是Cmake在下载ippicv_macosx_20141027.tgz这个文件的时候遇到了错误,导致下载的文件Hash值和预期的Hash值不同,所以需要我们自己下载ippicv_macosx_20141027.tgz这个文件然后覆盖过去。

下载地址: 
http://download.csdn.net/detail/alanzjl/8961695

大家如果使用Safari下载的话要仔细看看后缀名是不是tgz,因为系统可能会自动解压成tar,这样在重新封装成tgz的话hash值会改变,还是成功不了。所以可以换个浏览器下载,或者进入终端,使用wget指令下载

wget http://www.mirrorservice.org/sites/dl.sourceforge.net/pub/sourceforge/o/op/opencvlibrary/3rdparty/ippicv/ippicv_macosx_20141027.tgz

 

把下载下来的文件覆盖到报错信息所提到的目录,每个人目录可能不同,比如我的就是 
/Users/zhaozhaokaliang/opencv-3.0.0/3rdparty/ippicv/downloads/macosx-9662fe0694a67e59491a0dcc82fa26e0/ippicv_macosx_20141027.tgz

版权声明:博主原创文章转载请注明出处。 欢迎访问个人主页:alanzjl.sinaapp.com

 

(2)新mac里没有wget,那怎么办?那得安啊。怎么安?

由于软件可能存在依赖关系,为了避免不必要的麻烦,使用homebrew更好。

那homebrew也没有怎么办?那也得安啊。好吧,那来吧。

1:关于homebrew下载地址

    homebrew下载地址网上版本很多:我用了几个都是显示 404 bad request

如图:均无法现在

技术分享

   有一个网址会给出最新的 安装地址: the URL is:   http://brew.sh/index_zh-cn.html

在网站的最下面给出了通过terminal下载 homebrew的最新的下载地址:

技术分享

我下载的最新的路径是:  

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

然后再安装wget 就简单了。

brew install wget

 

 

 

 

 

MAC 下安装opencv遇到问题的解决方法(安装homebrew, wget)

标签:

原文地址:http://www.cnblogs.com/sdlypyzq/p/4759130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!