Here's what happens at first:
>>> import cv2
>>> print cv2.__version__
2.4.8
Then I activate a virtual enviconment
. venv/bin/activate
And try the same, but get:
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
How can this be? I was not aware that activating a virtual environment could make previously accessible modules inactive. Any suggestions?
Note: I'm using Kubuntu 14.04 at my university, where I have no admin rights.