How to install numpy on windows using pip install?

前端 未结 8 1751
温柔的废话
温柔的废话 2020-12-05 13:34

I want to install numpy using pip install numpy command but i get follwing error:

RuntimeError: Broken toolchain: cannot link a simple C program         


        
8条回答
  •  伪装坚强ぢ
    2020-12-05 14:04

    Frustratingly the Numpy package published to PyPI won't install on most Windows computers https://github.com/numpy/numpy/issues/5479

    Instead:

    1. Download the Numpy wheel for your Python version from http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy
    2. Install it from the command line pip install numpy-1.10.2+mkl-cp35-none-win_amd64.whl

提交回复
热议问题