I'm not sure if this is the right group but any help is appreciated.

I'm trying to run the QT console running this example:


   - # %load 
   http://matplotlib.org/plot_directive/mpl_examples/mplot3d/contour3d_demo.py
   - from mpl_toolkits.mplot3d import axes3d
   - import matplotlib.pyplot as plt
   - 
   - fig = plt.figure()
   - ax = fig.add_subplot(111, projection='3d')
   - X, Y, Z = axes3d.get_test_data(0.05)
   - cset = ax.contour(X, Y, Z)
   - ax.clabel(cset, fontsize=9, inline=1)
   - 
   - plt.show()
   

and get the following error:

ImportError: 
dlopen(/Users/gstock/anaconda/lib/python2.7/site-packages/matplotlib-1.5.dev1-py2.7-macosx-10.5-x86_64.egg/matplotlib/_png.so,
 
2): Library not loaded: libpng15.15.dylib
  Referenced from: 
/Users/gstock/anaconda/lib/python2.7/site-packages/matplotlib-1.5.dev1-py2.7-macosx-10.5-x86_64.egg/matplotlib/_png.so
  Reason: image not found


I have libpng installed but the version is 1.6.18

Thanks in advance for any ideas


-- 
You received this message because you are subscribed to the Google Groups 
"sympy" 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/sympy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/6d3043be-bfbe-444f-84a0-0cf8f77e9ca2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to