How to install numpy on windows using pip install?

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

    Install miniconda (here)

    After installed, open Anaconda Prompt (search this in Start Menu)

    Write:

    pip install numpy
    

    After installed, test:

    import numpy as np
    

提交回复
热议问题