I think this is the most popular way to do this before:
https://pytools.codeplex.com/wikipage?title=NumPy%20and%20SciPy%20for%20.Net
But this link no longer exists:
https://store.enthought.com/repo/.iron/
I recently found a clone for instructions, and also found a clone ironpkg-1.0.0.py on github. But http://www.enthought.com/repo/.iron/eggs/index-depend.txt no longer exists on the Internet (I searched for it, but could not find it)
Getting started with SciPy for .NET.
1.) IronPython Download and install IronPython 2.7, this will require .NET v4.0.
2.) Change PATH
Add the installation location to the path, this is usually: C: \ Program Files \ IronPython 2.7
But on 64-bit Windows systems this is: C: \ Program File (x86) \ IronPython 2.7
As a test, open the Windows command prompt and go to the directory (which is not listed above) and enter:
ipy -V PythonContext 2.7.0.40 on .NET 4.0.30319.225
3.) ironpkg
Bootstrap ironpkg, which is the package installation manager for binary (egg-based) Python packages. Download ironpkg-1.0.0.py and enter:
ipy ironpkg-1.0.0.py --install
The ironpkg command should now be available:
ironpkg -h (useful help text displayed here)
4.) scipy
Installing scipy is now easy:
ironpkg scipy numpy-2.0.0b2-1.egg
Question
I think I did as much as I could. Any body manage to install numpy and scipy for Ironpython27?