I've created a project in Pycharm IDE. I've used python 3.5, tensorflow
library. Now I want to install opencv
in this.
I have tried so many videos available on youtube and some tutorials in the internet. But when import open cv in python shell it gives me following error. How can I fix it?
import code
import cv2
Error message
Traceback (most recent call last): File "", line 1, in import cv2 ImportError: Module use of python27.dll conflicts with this version of Python.
I have noticed that python 2.7 is used to install opencv. Is it a must o use 2.7 version?
Also as I know tensorflow will not support if I use another version of python(other than 3.5)