I have recently received a Python program that I'm not able to compile. I read some tutorial but the error note doesn't make sense.
The program starts with
from Numeric import *
from FFT import *
from LinearAlgebra import *
from scipy import *
from CsvUtils import *
from math import log
from math import atan
from os.path import *
from string import *
from Scientific.Functions.Interpolation import *
from real import *
But when I try to compile it ( run module) the error says:
Traceback (most recent call last):
File "/Users/reemjaafar/Desktop/Python/InternalMagneticField2-DerivativeResult.py", line 1, in <module>
from Numeric import *
ImportError: No module named Numeric
So it is not recognizing the Numeric module, shouldn't that be already in the library of Phyton?