How to install packages / modules in IronPython

I am new to IronPython. Thanks for the help and patience.

I installed IronPython 2.7 from http://ironpython.net/ in Visual Studio 2015. I also installed Python 2.7.6 and anaconda.

I tried the following solution and it did not work. Install Python packages - IronPython

I am wondering if IronPython can use modules installed by anaconda directly?

Packages I tried to install: numpy, scipy, pandas, sklearn. In 2012, I saw a document stating that sklearn is not supported in IronPython. Is this still true?

Thank you

+10
source share
1

IronPython http://ironpython.net/blog/2014/12/07/pip-in-ironpython-275.html

Step1

IronPython

Step2

cmd

ipy -X:Frames -m ensurepip

, ,

ipy -X:Frames -m pip install Package
0

Source: https://habr.com/ru/post/1655192/


All Articles