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

后端 未结 14 1876
傲寒
傲寒 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:56

    Hey I had the same issue.
    You can find all the packages in the link below:
    http://www.lfd.uci.edu/~gohlke/pythonlibs/#scikit-learn
    And choose the package you need for your version of windows and python.

    You have to download the file with whl extension. After that, you will copy the file into your python directory then run the following command:
    py -3.6 -m pip install matplotlib-2.1.0-cp36-cp36m-win_amd64.whl

    Here is an example when I wanted to install matplolib for my python 3.6 https://www.youtube.com/watch?v=MzV4N4XUvYc
    and this is the video I followed.

提交回复
热议问题