How to resolve "ImportError: DLL load failed:" on Python?

111.9k Views Asked by At

Recently I start to get ImportError: DLL load failed: error when I import different libraries (for example scikit-learn or scipy and some others).

My assumptions is that I have broken something when I was trying to pip install opencv.

So, my question is how to resolve this problem that seems to be not library specific?

Can I pip install DLL or something like that? Can I just reinstall the whole Python? I am working on Windows. My version of Python is Python 2.7.10 :: Anaconda 2.3.0 (64-bit).

If I print sys.path I get this:

['',
 'C:\\Anaconda\\Scripts',
 'C:\\Anaconda\\python27.zip',
 'C:\\Anaconda\\DLLs',
 'C:\\Anaconda\\lib',
 'C:\\Anaconda\\lib\\plat-win',
 'C:\\Anaconda\\lib\\lib-tk',
 'C:\\Anaconda',
 'C:\\Anaconda\\lib\\site-packages',
 'C:\\Anaconda\\lib\\site-packages\\Sphinx-1.3.1-py2.7.egg',
 'C:\\Anaconda\\lib\\site-packages\\cryptography-0.9.1-py2.7-win-amd64.egg',
 'C:\\Panda3D-1.9.2-x64',
 'C:\\Panda3D-1.9.2-x64\\bin',
 'C:\\Anaconda\\lib\\site-packages\\win32',
 'C:\\Anaconda\\lib\\site-packages\\win32\\lib',
 'C:\\Anaconda\\lib\\site-packages\\Pythonwin',
 'C:\\Anaconda\\lib\\site-packages\\setuptools-17.1.1-py2.7.egg',
 'C:\\Anaconda\\lib\\site-packages\\IPython\\extensions',
 'C:\\Users\\myname\\.ipython']

What worries me is that there is a mixture of 32 and 64 versions. Another thing, maybe I just have different Pythons and I just need to call the proper one?

9

There are 9 best solutions below

2
On BEST ANSWER

I have managed to resolve the problem by reinstalling Python. First, I have uninstalled Python (like any other program in Windows). Then I have installed Anaconda distribution of Python. The problem is not present anymore.

0
On

I just encountered this exact problem and was struggling to solve it. I tried to reinstall anaconda, I reinstalled the relevant packages, I changed my environment - BUT NOTHING WORKED! eventually, after few hours, I managed to solve this problem with some few easy steps as described here :)

just type in the command line (one code-line at a time): conda install numpy then, conda install scipy then, pip install -U seaborn then, pip install -U numpy and finally, pip install -U scipy

That's it :) - it is now working! (it also fixed the error for all of the other libraries as well, such as sklearn, matplotlib etc.)

0
On

I don't know but I opened the adminstrator cmd if don't know just hover over command promp and right click and you'll see the option of open in admistrator mode click over it just uninstall using pip uninstall package_name and don't close because the package_will be cached down and when you again command pip install package_name it should work ,just because it worked for me LOL if you close it you have to download it again like ffpyplayer is of 25 mbs so why to do that

3
On

If anyone comes across this issue in Python > 3.8 with Windows, dll's are only loaded from trusted locations https://docs.python.org/3/whatsnew/3.8.html#ctypes This can be fixed by adding the dll path using os.add_dll_directory("PATH_TO_DLL")

2
On

You can try to activate an enviroment. Activating environments is essential to making the software in the environments work well. Activation entails two primary functions: adding entries to PATH for the environment and running any activation scripts that the environment may contain. (Only work on conda 4.6 and later versions)

To activate, execute this first on cmd:

conda activate

The, run the jupyter notebook on cmd too

jupyter notebook

This work for me when I was trying to use "seaborn" and anothers packages like numpy, sklearn, and so on.

0
On

In my case, the VSCode discovery kept failing due to a invalid DLL import during test discovery. In the actual running case, the enviroment is established and the DLL will work. To get around it, I wrapped the import for the pytest in a check to see if pytest was used in discovery or testing

(Note: the DLL failure won't be trapped by the try: except: block during discovey)

Module:

...

try:
    # avoid incorrect import failures during discovery and unit test
    if not is_running_in_test():
        import MyNiceDLLmodule

except:
    # real failures during runtime
    raise Exception("Failed to import module")
...

To handle cases of module import during pytest disovery and unit test:

def is_running_in_test() -> bool:
    import os
    import sys

    # handles most unit test discovery and test situations for VSCode

    is_pytest = os.path.basename(sys.argv[0]) in ["pytest", "py.test"]
    is_pytest |= "vscode_pytest" in sys.argv[0]
    is_test_discovery = "discover" in sys.argv and "pytest" in sys.argv
    is_test_discovery |= r"pytest\__main__.py" in sys.argv[0]

    return is_pytest or is_test_discovery
0
On

So I faced a similar issue; uninstalling and reinstalling Anaconda was the only way I found to fix it. To remove Anaconda and all its residual files I used the iobit uninstaller software, you can download it here:

https://www.iobit.com/en/recommend/iu.php

1
On

I got dll load failed error when i am importing scikit-learn library. I uninstalled and reinstalled this library and more importantly RESTART your vs code editor ( if you use other editor it works well ). Happy coding.

0
On

This is an old question, and sadly pops up in search results. The solution that actually works:

If re-installing python didn't work, you simply need to update pywin32

pip install pywin32==300

Read more here: ImportError: DLL load failed while importing shell