I want to install numpy using pip install numpy
command but i get follwing error:
RuntimeError: Broken toolchain: cannot link a simple C program
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:
conda install numpy
(make sure your PATH includes the location conda was installed to).