环境:Windows 10,64位 + Python 3.6 + pip
资源:Numpy, Scipy, Matplotlib的wheel文件见百度网盘或加州大学欧文分校的pythonlib地址
文件如下:(包名-版本号-for CPython3.6-(CPython3.6 MTK)-windows-64.whl)
这里是Numpy文件是Numpy+MKL的。Numpy+MKL是将Numpy链接的基础包换成了高度优化的数值计算库Intel math kernel library (MKL),提高了计算性能。没有冲突问题,尽情使用。
Numpy is a fundamental package needed for scientific computing with Python. Numpy+MKL is linked to the Intel® Math Kernel Library and includes required DLLs in the numpy.core directory.
安装步骤:
安装命令:
pip install 安装文件全称(带文件后缀)
安装后检验:
错误:
错误1.“ImportError: cannot import name NUMPY_MKL”
解释:“numpy”是使用“pip install numpy”命令安装的,和“scipy”的下载的源不一样,但是就不行了,因为scipy基于numpy。
解决:用命令“pip uninstall numpy”卸载numpy,重新安装与scipy同源的numpy。
参考资料:
1. python3.6安装numpy scipy matplotlib的正确打开方式(win64)
2. 微软LightGBM Windows下Python安装:ImportError: cannot import name NUMPY_MKL