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
process.dlopen(...) - Error: The specified module could not be found. #50
Comments
Hey, this error means that it could not load the binaries, e.g. the opencv .dlls. Are you sure that you have the opencv binary path added to your system path? Another reason for that error could be that the dlls do not match with the linked libraries. For example if you try to link static debug libraries with release dlls or maybe you still have opencv binaries from another version than 3.3.1 in your system path. |
Damn ... a typo :| |
When you run "pip install shapely" it will show you where the package is installed [in my case Requirement already satisfied: shapely in c:\users<USERNAME>\anaconda3\envs<ENVNAME>\lib\site-packages (1.7.1))]. Then go into that folder (c:\users<USERNAME>\anaconda3\envs<ENVNAME>\lib\site-packages\shapely), there is a folder called DLLS. Copy the files from there to your environment's library (in my case c:\users<USERNAME>\anaconda3\envs<ENVNAME>\Library\bin) |
How this related to pip? |
The Error:
The Code I'm trying to execute:
Versions etc ...
Tried with: opencv-3.3.1-vc14.exe
I tried to npm rebuild already, also I tried to install completly new with the same outcome.
Install looked good to me.
Thanks for any help!
The text was updated successfully, but these errors were encountered: