0

I have install opencv via pip by pip install opencv-python and it have been successfully installed but when I try to import it is show The specific module could not be found.enter image description here

This is the opencv's init.py code

import sys import os #FFMPEG dll is not found on Windows without this os.environ["PATH"] += os.pathsep + os.path.dirname(os.path.realpath(file)) from . import cv2 sys.modules['cv2'] = cv2

1 Answers1

0

I have followed this blog and it worked for me