Installing NumPy and SciPy on 64-bit Windows (with Pip)

后端 未结 14 1869
傲寒
傲寒 2020-11-27 04:27

I found out that it\'s impossible to install NumPy/SciPy via installers on Windows 64-bit, that\'s only possible on 32-bit. Because I need more memory than a 32-bit installa

14条回答
  •  [愿得一人]
    2020-11-27 04:43

    If you are on windows , you wouldn't need wheel anyway! You can directly install package by downloading the 32-bit package as win32 from this link [http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy] and then move that downloaded package to cmd's current directory and open cmd and write following codepip install numpy-1.13.1+mkl-cp36-cp36m-win32.whl then do it same for scipy

    For 64-bit you need to install mingw-w64 as it is gcc and compiles numpy and scipy as precompiled status.

    Currently it works fine with 32-bit.So I had opted for win32 package both for numpy+mkl and scipy in that link.

    Hope This works! Give a try

提交回复
热议问题