I think using the profiler is the best bet here. We've used that in the
past to track down things that take a long time to import quite
successfully. I'm not seeing any slowness here, so that is likely do to
an environmental difference on your machine, implying you'll really need
to run the p
Resurrecting an old thread here
On Tue, Mar 29, 2011 at 3:23 PM, David Kremer wrote:
> > I would recommend running the import in the Python profiler to determine
> > where most of the time is going. When I investigated this a few years
> > back, it was mainly due to loading the GUI toolkits
onday, March 28, 2011 9:36 AM
To: Matplotlib Users
Subject: [Matplotlib-users] matplotlib is slow
Hello everyone,
I would like to draw the attention on the slow startup of matplotlib.
Indeed, running matplotlib takes a long time.
I performed the following sequence :
```bash
#!/bin/bash
for i in *
Hello everyone,
I would like to draw the attention on the slow startup of matplotlib.
Indeed, running matplotlib takes a long time.
I performed the following sequence :
```bash
#!/bin/bash
for i in * ; do python2 -c "from temp import * ; plot_(\"${i}\") " ; done
```
with temp.py like this :