0

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.

SCB
  • 5,821
  • 1
  • 34
  • 43
Ben
  • 1,737
  • 2
  • 30
  • 61

1 Answers1

0

Installing modules in IronPython should be as easy as:

ipy -X:Frames -m pip install urllib3

But sometimes IronPython is a pain.

Eric Fossum
  • 2,395
  • 4
  • 26
  • 50