How to install numpy on windows using pip install?

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

    Check installation of python 2.7 than install/reinstall pip which described here than open command line and write

    pip install numpy
    

    or

    pip install scipy
    

    if already installed try this

    pip install -U numpy
    

提交回复
热议问题