On Thu, Nov 4, 2010 at 11:43 AM, Elizabeth Yip Dembart
<elyip.demb...@gmail.com> wrote:
> Thank you for the prompt response.
> I cannot run matplotlib directly.  It crashes as I tried to import
> matplotlib.pyplot:
>
> sphinx/sampledoc> python
> Python 2.6 (r26:66714, Dec  3 2008, 10:55:18)
> [GCC 4.3.2 [gcc-4_3-branch revision 141291]] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
>>>> import matplotlib.pyplot as plt
> Segmentation fault (core dumped)
>
> What do you mean by the Agg backend?

This is our core rendering engine -- see
http://matplotlib.sourceforge.net/faq/installing_faq.html#what-is-a-backend

The problem you are experiencing has nothing to do with sphinx or the
sphinx extensions, but is in your matplotlib installation.  It may be
a SUSE bug, or you may be getting conflicting installs from the stuff
you are getting from SUSE and the stuff you are easy installing.
First thing to do is start nailing down what you are getting and where
you are getting it from.  Paste these commands into your python shell
and report the output

import numpy as np
print np.__file__
print np.__version__

import matplotlib as mpl
print mpl.__file__
print mpl.__version__

A likely culprit is that you have an mpl compiled against one version
of numpy and you are dynamically linking against another that is not
ABI compliant.

JDH

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to