Hi!

I'm trying to create a mac-compatible application which shows some 
matplotlib figure. I'm using the enthought python installation and the 
following minimal python script:

#!/usr/bin/env python
import matplotlib
matplotlib.use("MacOSX")
from matplotlib.pyplot import *
from numpy import *
x=linspace(0,2*pi,200)
plot(x,sin(x))
show()


Then I compile with `python pyinstaller.py --windowed test.py`. It compiles 
find, even shows the figure when I start it, but as soon as I move the 
mouse on the figure, it crashes with the error message:

MKL FATAL ERROR: Cannot load libmkl_core.dylib


Any ideas how to fix it?

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to