Fixing the “MSVCP110D.dll is missing from your computer” issue

后端 未结 5 1366
春和景丽
春和景丽 2020-12-17 19:18

I am facing the following (fairly common) problem: I am running my program in Debug mode in VS2010 and/or VS2012, but at startup it crashes, saying:

T

5条回答
  •  遥遥无期
    2020-12-17 19:39

    I am new to openCV and C++ and had the same problem using openCV 2.4.10 with Visual Studio Express 2013 on a Windows 7, 32-bit platform. If I made a simple program without using OpenCV, the program ran but when I used OpenCV I got the missing DLL error.

    This post made things clear:

    I guess the problem I had was not with my Visual Studio but my OpenCV. The OpenCV was compiled on a version of visual studio which required MSVCP110.dll. I could have tried another version of OpenCV or compiled OpenCV again using VS2013 but I was short of time. Instead, I found the dll file elsewhere and placed it in my system32 folder (not sure if that's recommended). This fixed the problem. However as @slater mentioned, I won't recommend downloading the dll from external website due to security issues.

提交回复
热议问题