How to install NumPy for IronPython in 2017? How to install NumPy for IronPython in 2017? python python

How to install NumPy for IronPython in 2017?


You can download the required wheel file from https://pypi.org/project/numpy.

Update the pip to the latest version based on your OS.

If you are unable to use pip, please add pip to your PATH by editingenvironment variables.

pip install --upgrade pip

After upgrading pip, you can use pip to install the local *.whl file you downloaded

pip install C:\path\to\whl_file.whl

For more customized install, you can look here: https://pip.pypa.io/en/stable/


Paste this in to your terminal

pip install numpy

If it say: pip is not recognized as an internal or external command, then try reinstalling Python and remember to add it to PATH (Easiest step. There is more ways to fix this butthis is the easiest one).

Then, it will work perfectly :)