Skip to content Skip to sidebar Skip to footer

Importerror: Dll Load Failed While Importing _rolling_ball_cy:

I am a newbie to Python and working on a small opencv application. I need local_threshold from scikit-image but getting below error : Traceback (most recent call last): File 'D:

Solution 1:

Installing the old version (0.18.0rc0 version) of scikit-image I solved this problem

Solution 2:

You need to install and distribute the contents of Microsoft's vcredist_x64.exe. In particular you need VCOMP140.DLL.

Solution 3:

You need to install the scikit-image 0.18.0rc0 package. To install this package run the command below.

pip install scikit-image==0.18.0rc0

Note - This also takes care of any previously installed versions of it by removing it and installing the specified version. If there is any problem with the installation, try running the command in an administrator terminal window.

Solution 4:

I was able to get it work by reinstalling python on my machine. Hope it helps somebody.

Post a Comment for "Importerror: Dll Load Failed While Importing _rolling_ball_cy:"