I am still relatively new to Python, virtualenv and virtualenvwrapper but have hit a problem that I previously hacked a solution to but I am now looking for the right or the Pythonic way to solve it.
I would like to work with matplotlib
so if I start a terminal session and type start a Python shell and type
from matplotlib import pyplot
I don't hit any problems as the screenshot shows:
However if I try the same command from within my virtualenv Python can not "see" the library, again here is the screenshot:
I believe that I need to add the library to my pythonpath but I have been going around in circles. In desperation I thought I could use pip to install the library when the virtualenv was active but that failed with errors (I can post the errors but didn't want to add unnecessary noise to my question)
Thanks in advance for any help you can provide.