Installing python packages in Ironpython

1.2k Views Asked by At

I have made few functions in Pycharms using the following packages:

  • Urllib.requests
  • Numpy

However, when I used these functions inside a code that I wrote in Ironpython (used in order to make a GUI), I recieved an exception that there are no such modules.

How can I install packages used in function?

Thank you.

1

There are 1 best solutions below

0
Eric Fossum On

Installing modules in IronPython should be as easy as:

ipy -X:Frames -m pip install urllib3

But sometimes IronPython is a pain.