For IronPython to import some modules it requires -X:Frames
option to be passed. (ipy -X:Frames
)
However, when using Visual Studio we can only assign this option if we use interactive window. To execute a Python file there is no way that I know to pass parameters. Maybe something like:
some_name.options.append("X:Frames")
import my_module
Is there a way to do so?