Pedro Acosta Pilataxi
Pedro Acosta Pilataxi

Reputation: 113

OpenCV with Python 3.6.4 on Windows Server 2012 R2 x64 import cv2: DLL not found

i'm having a problem with opencv installation but i dont know if it is due to the fact that i'm using that system or missing c++ libraries.. I get the message DLL Failed to load cannot find the specified module. I tried installing c++ 2015 redistributable for 64bits.

Upvotes: 3

Views: 3832

Answers (1)

Arne Sommerfelt
Arne Sommerfelt

Reputation: 66

The solution was found by Jakub Mertl and documented here:

Below I have repeated his procedure which solved the problem on my server:

  1. Get all available windows updates and restart.
  2. In powershell run command: Install-WindowsFeature -Name ServerEssentialsRole -IncludeAllSubFeature
  3. Download Windows Server Essentials here Install it and restart your machine.

Upvotes: 5

Related Questions