Python - solve numpy import error problem

  • The NumPy system is an open source numerical computing extension to Python. This tool can be used to store and process large matrices much more efficiently than Python's own nested list structure. But there may be an error when using Numpy: ImportError: No module named numpy, the solution is to download and install the corresponding version of the Numpy program. My Python version is 2.7-64bit, you can download the corresponding Numpy and install it.

Python-Numpy2.7 64-bit version: 
http://download.csdn.net/download/i_with_u/8651431 
write picture description here

Install Numpy to the Python installation path: 
write picture description here

Import Numpy again: 
write picture description here

Related Posts