I have installed opencv using pip install opencv-contrib-python in ActivePython 3.5.4 in ** Windows 10**. When I import cv2 module it is throwing error as
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Users\Yajana\Documents\Python\mechine_learning\env\lib\site-packages\cv2\__init__.py", line 3, in <module> from .cv2 import * ImportError: DLL load failed: The specified module could not be found.
- I have Microsoft Visual C++ 2015 Redistributable Installed
- I have tried with downloading
api-ms-win-downlevel-shlwapi-l1-1-0.dll and placing it in system32 and SysWOW64
What else can be done to resolve the issue?
I have installed opencv using
pip install opencv-contrib-pythonin ActivePython 3.5.4 in ** Windows 10**. When I import cv2 module it is throwing error asTraceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Users\Yajana\Documents\Python\mechine_learning\env\lib\site-packages\cv2\__init__.py", line 3, in <module> from .cv2 import * ImportError: DLL load failed: The specified module could not be found.api-ms-win-downlevel-shlwapi-l1-1-0.dlland placing it in system32 and SysWOW64What else can be done to resolve the issue?