Search code examples
pythonimporterrorpython-import

ImportError: No module named numeric


I get the following error ImportError: No module named numeric if I have the following import

 from numeric import *

in my python source code. How do I get this running on my Windows box against a python 2.7.x compiler?


Solution

  • You will probably need to install this module: Link There are binaries for windows too, so installation should be easy.

    Josh