I recently started exploring PAD and trying to incorporate Python scripts into my Flows. I wrote a pure Python script that utilizes both pandas and numpy. In a normal Python installation, I would then run a pip install command from the terminal allowing me to utilize import pandas and import numpy statements in my script. I know that PAD uses IronPython 2.7.9 (via a sys.version statement within my Flow). No error is generated, but attempting to process the import pandas and numpy statements exits the Flow's Python script. I think the issue is that I need to pip install pandas and numpy for IronPython, but I cannot figure out where IronPython lives when installed as a part of PAD. I've looked through the Program Files and Program Files (x86) but cannot seem to find IronPython anywhere. Any guidance would be appreciated. Thanks.