How to install numpy on windows using pip install?

前端 未结 8 1746
温柔的废话
温柔的废话 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:22

    Installing extension modules can be an issue with pip. This is why conda exists. conda is an open-source BSD-licensed cross-platform package manager. It can easily install NumPy.

    Two options:

    • Install Anaconda here
    • Install Miniconda here and then go to a command-line and type conda install numpy (make sure your PATH includes the location conda was installed to).

提交回复
热议问题