--- /usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/lib/plot.py.oryg.MS 2014-10-09 20:11:05.788717998 +0200 +++ /usr/lib/python2.7/site-packages/wx-3.0-gtk2/wx/lib/plot.py 2014-10-09 20:11:30.829232381 +0200 @@ -113,17 +113,23 @@ import sys import wx -# Needs NumPy +# Needs Numeric or numarray or NumPy try: import numpy.oldnumeric as _Numeric except: - msg= """ - This module requires the NumPy module, which could not be - imported. It probably is not installed (it's not part of the - standard Python distribution). See the Numeric Python site - (http://numpy.scipy.org) for information on downloading source or - binaries.""" - raise ImportError, "NumPy not found.\n" + msg + try: + import numarray as _Numeric #if numarray is used it is renamed Numeric + except: + try: + import Numeric as _Numeric + except: + msg= """ + This module requires the Numeric/numarray or NumPy module, + which could not be imported. It probably is not installed + (it's not part of the standard Python distribution). See the + Numeric Python site (http://numpy.scipy.org) for information on + downloading source or binaries.""" + raise ImportError, "Numeric,numarray or NumPy not found. \n" + msg