-
Notifications
You must be signed in to change notification settings - Fork 896
ImportError: DLL load failed: The specified module could not be found. #154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
These packages are targeted only for the official CPython implementation: https://www.python.org/ Please do not download arbitrary DLL files from the internet. They might contain malware. First, install all Windows updates to your system. If that does not work, you can try to check the missing dependencies with Dependency Walker. |
Missing dlls are Here are the logs when I import in -v mode
|
Could you try with https://github.com/lucasg/Dependencies. Its output is easier to read as it does not contain so many false positives. |
The solution for this issue is to download windows media feature package for the version of windows that I am using. |
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 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.dll
and placing it in system32 and SysWOW64What else can be done to resolve the issue?
The text was updated successfully, but these errors were encountered: