Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install NumPy for IronPython in 2017?

Tags:

I have found the old answer to this question, but the instructions provided in the mentioned post are no longer working... Essentially the URL where NumPy for IronPython was stored is broken.

How to install NumPy for IronPython in 2015/2016

like image 783
Krystian Sakowski Avatar asked Jun 22 '17 23:06

Krystian Sakowski


People also ask

Can I use NumPy in IronPython?

This means NumPy library is not supported by IronPython.

Can you pip install NumPy?

NumPy can be installed with conda , with pip , with a package manager on macOS and Linux, or from source.


1 Answers

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 editing environment 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/

like image 115
Moid Avatar answered Sep 25 '22 16:09

Moid