如何在 Ironpython 中使用 –X:Frames?

发布于 2024-09-06 07:01:23 字数 303 浏览 6 评论 0原文

Visual Studio 2010 + Ironpython for .net4

我想在ironpython中使用numpy,他们说我必须使用框架支持。 因此,我应该在命令行上使用 -X:Frames 或 -X:FullFrames 运行 ipy。

但是,我有两个问题: 1.如何在 Ironpython Interactive 控制台中使用 -X:Frames 或 -X:FullFrames?

2.如果我使用C# 4加载包含numpy的py,我如何使用外部参数,如-X:Frames或-X:FullFrames?

多谢。

Visual Studio 2010 + Ironpython for .net4

I want to use numpy in ironpython, and they said I must use frames support.
So, I should running ipy with -X:Frames or -X:FullFrames on the command line.

But, I have two questions:
1.how can i use -X:Frames or -X:FullFrames in Ironpython Interactive console?

2.If I use C# 4 to load py which contained numpy, how can I use extern parameter like -X:Frames or -X:FullFrames?

Thanks a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守望孤独 2024-09-13 07:01:23
  1. IronPython Tools for Visual Studio 已被 Python Tools for Visual Studio 弃用(请参阅 http://pytools.codeplex.com )。在 VS 2010 中使用 Python 工具:打开 Tools=>Options=>Python Tools=>Interpreter Options 并将“-X:FullFrames”添加到“Interactive Window Options”字段。

  2. 当您通过 IronPython.Hosting.Python.CreateEngine 创建 IronPython 引擎时,请使用接受字典的重载。此字典参数需要将 FullFrames 键设置为 trueIronPython 中质量求值表达式的性能会给你一个好主意如何执行此操作。

  1. IronPython Tools for Visual Studio has been deprecated by Python Tools for Visual Studio (see http://pytools.codeplex.com). Using Python Tools in VS 2010: open Tools=>Options=>Python Tools=>Interpreter Options and add "-X:FullFrames" to the "Interactive Window Options" field.

  2. When you create your IronPython engine via IronPython.Hosting.Python.CreateEngine, use the overload that accepts a Dictionary. This dictionary parameter needs a FullFrames key set to true. Performance of Mass-Evaluating Expressions in IronPython will give you a good idea how to do this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文