i had succesfully installed numpy (numpy-1.6.2-win32-superpack-python2.7.exe). But, whenever i try to call any functions i am getting following the error below. Thanks in advance for help.
import numpy as np
if __name__ == "__main__":
k = np.arange(10)
AttributeError: 'module' object has no attribute 'arange'
dir(np)what do you get? – user545424 Aug 22 '12 at 18:01numpy.py, did you? – DSM Aug 23 '12 at 20:31np.__file__to make sure it's actually the system module and not an accidental script. – Dougal Aug 23 '12 at 20:51