问题:
使用VS2013生成caffe解决方案时,报错NuGet Error:Unable to find version '0.3.3.0' of package 'glog.overlay-x64_v120_Release_dynamic'.
解决方案:
一、参考文章里面的回答:
链接:NuGet error while building caffe on Windows with visual studio 2013
地址:https://stackoverflow.com/questions/39628955/nuget-error-while-building-caffe-on-windows-with-visual-studio-2013
I resolved this issue on my system by overwriting the copy of NuGet.exe that was in caffe-master/windows/.nuget with the nuget.exe version that came with glog.0.3.3.0 in NugetPackages\glog.0.3.3.0\build\native\private\
翻译一下就是说:使用路径 NugetPackages\glog.0.3.3.0\build\native\private\
下的 NuGet.exe
覆盖 caffe-master/windows/.nuget
下的 NuGet.exe
,我下的microsoft下的caffe https://codechina.csdn.net/mirrors/microsoft/caffe?utm_source=csdn_github_accelerator
,没有.nuget文件夹,无法使用这个办法。
因此我自己找到了第二个办法
二、自己下载所谓的找不到的资源
直接搜索博客资源’glog.overlay-x64_v120_Release_dynamic就能找到需要的资源,我下载了一个
将上面所有的文件夹都复制到你自己的文件夹就可以,我的在D:\Program Files\NugetPackages
该文件夹与你的caffer-master在同一目录下。