Why Doesn't Pip Freeze Show Opencv?
I've installed OpenCV on my mac and I can import it in Python: >>> import cv2 >>> cv2.__version__ '3.2.0' but when I use pip freeze the package is not in the lis
Solution 1:
As @ZdaR suggested in the comment above, it was because OpenCV wasn't installed through pip.
Post a Comment for "Why Doesn't Pip Freeze Show Opencv?"