I\'ve already installed numpy 1.9.0 in Python.Now what should I do to get numpy+mkl?
The easiest way is to install an entire Python distribution with lots of included packages, such as numpy and mkl. I would suggest the Anaconda Python distribution, https://www.continuum.io/downloads
The above answer does great (+1) and brought me on the right track, but to clear things up even more:
.whl from here.whl you need to know numpy‑1.11.3+mkl‑cpXX‑cpXXm‑win_amd64.whl
where the XX are actually your python version (e.g. 36 for python version 3.6.x)pip install numpy‑1.11.3+mkl‑cp**XX**‑cp**XX**m‑win_amd64.whl in your cmd window and the place where you did download the .whl intoIf you do not have an entire Python distribution or you do not want to install one, you can download and install a compiled whl package from Christoph Gohlke's webpage. This whl contains numpy and is linked against mkl. When installing this package, you install both: numpy with the mkl dependencies.
All you have to do is:
whl file (Choose the right Python version and 32/64 file)Windows+R and by running inside cmdwhl file, with cd instructionspip install numpy‑1.XX.Y+mkl‑cp3X‑cp3Xm‑win_amd64.whlFor example, the command can be
pip install numpy‑1.11.3+mkl‑cp35‑cp35m‑win_amd64.whl
You can do it for any package with some code that has to be compiled