Tl;dr - after I had an issue with clashed versions between opencv
and QT
, I uninstalled opencv-python
. But somehow I am still able to import and use cv2
inside python. How is that possible? What am I missing? Where is this opencv-python
still installed?
Some more details:
My tech spec: Ubuntu 18.04, Python 3.6, PyCharm Community 2020.3.
My actions:
uninstalled opencv:
pip3 uninstall opencv-python
(process was successful)validated it was indeed uninstalled:
pip3 freeze | grep opencv-python
(return nothing)validated also inside PyCharm that my environment does not have the package installed (I only work with my environment but just to make double-sure...)
To my surprise:
Inside python,
import cv2
is a success, and I am able to use all functionality (well, at least the ones I tested...)
=> My question: how is this possible?