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
.
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