0
I am currently using conda version 4.6.14 with python 3.7.3, I successfully installed OpenCV in the anaconda shell using conda install -c conda-forge opencv
but when I run python in the shell and type in import cv2
it gives the following error:
**>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed: The specified module could not be found.**
I found some fixes online saying I have to replace the DLL file in the Anaconda folder by downlading the file from my python release zip file but even that did not work.
Does it problem arise because of my machine or is it common? How do I fix it?