Hi all,
I am using matplotlib with Django.
I want to display figures processed in Django apps by matplotlib in browser
using html5.
I tried:
*def plot_file(request):*
*import matplotlib.cbook as cbook*
*fig = figure()*
*fname = cbook.get_sample_data('msft.csv', asfileobj=False)*
*
`python3 setup.py build` fails with this error:
...
running build_ext
building 'matplotlib.ft2font' extension
creating build\temp.win32-3.3
creating build\temp.win32-3.3\Release
creating build\temp.win32-3.3\Release\src
creating build\temp.win32-3.3\Releas
Some more info I think I should have posted:
BUILDING MATPLOTLIB
matplotlib: 1.2.0
python: 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48)
[MSC v.1600 32 bit (Intel)]
I found this: https://github.com/cournape/matplotlib-dependencies
but what should I do with it?
Should I try to compile or put it in some folder?
How to instruct matplotlib to use those?
site.cfg template doesn't have any entry for each of above packages.