From: Robert L. <ro...@le...> - 2005-02-20 10:34:04
|
Alex Rada wrote: > ImportError: No module named Numeric You need to tell Matplotlib that you are using numarray instead of Numeric. It can be specified in your matplotlibrc file or at runtime: > python myscript.py --numarray # use numarray > python myscript.py --Numeric # use Numeric See section 1.2.1 of the users guide. Robert |