Comment importer NumPy dans le shell Python

J'ai essayé de l'importation de NumPy en Python, mais il n'a pas réussi:

>>> import numpy as np
    x=np.array([[7,8,5],[3,5,7]],np.int32)

   Traceback (most recent call last):
   File "<pyshell#3>", line 1, in <module>
   import numpy as np
   File "C:\Python27\lib\numpy\__init__.py", line 127, in <module>
   raise ImportError(msg)
   ImportError: Error importing numpy: you should not try to import numpy from
   its source directory; please exit the numpy source tree, and relaunch
   your Python interpreter from there.

Comment puis-je résoudre ce problème?

source d'informationauteur hafizul asad