2017/03/16

Windows 下 Python 安裝 numpy + scipy

 http://www.lfd.uci.edu/~gohlke/pythonlibs/

像我目前使用的是 Python 3.5
下載

numpy-1.11.3+mkl-cp35-cp35m-win32.whl
scipy-0.19.0-cp35-cp35m-win32.whl

然後複製到 Python 安裝目錄\Scripts, 像我的是 D:\Python35-32\Scripts
再來進入 cmd 模式 進入 D:\Python35-32\Scripts

使用 pip 安裝

 pip install numpy-1.11.3+mkl-cp35-cp35m-win32.whl
 pip install scipy-0.19.0-cp35-cp35m-win32.whl

以上.