After you've setup your development environment with all of the MPL
dependencies, navigate to the MPL source directory and install it with:
$ python setup.py develop
or
$ pip install -e .
That'll create a link in site-packages (or whatever that directory is) to
the source directory. After you m
How do I set it up so that I can import my local matplotlib dev copy?
I tried making a sym-link to matplotlib/lib/matplotlib, but it's giving me
errors:
import matplotlib.transforms as mtransforms
AttributeError: 'module' object has no attribute 'transforms'
Thanks,
Neil
---