When I follow this link to install numpy my Autodesk maya 2012. I know maya 2012 has own python interpreter version 2.6.4 so that I installed numpy 1.7.1, Python 2.6 version.
import sys
sys.path.append("C:/Python26/Lib/site-package/numpy")
sys.path.append("C:/Python26/Lib/site-package/numpy/lib")
import numpy
# Error: ImportError: No module named numpy #
sys.path.append("C:/Python26/Lib/site-package")
import numpy
# Error: ImportError: No module named numpy #
After I follow this instruction, and execute commands at the python interpreter, It causes an error. However, It has already applied on the python 2.6 standalone. How to apply extensions on the maya interpreter?