IronPython 2.7中的sympy导入错误

时间:2015-09-26 07:39:48

标签: python ironpython sympy

我正在尝试在我的python脚本中使用sympy库,但是当我尝试导入它时遇到错误。我该如何解决? enter image description here

1 个答案:

答案 0 :(得分:0)

您正在使用的库似乎使用内部API来获取当前堆栈/活动对象的信息。 为了提供所需的信息和接口,您必须使用-X:FullFrames参数运行IronPython。

您是否计划从C#托管IronPython this answer解释了必要的步骤。

而不是之前的情况/错误

C:\Program Files (x86)\IronPython 2.7>ipy
IronPython 2.7.5 (2.7.5.0) on .NET 4.0.30319.42000 (32-bit)
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys._getframe(0)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute '_getframe'

您将获得预期的行为

C:\Program Files (x86)\IronPython 2.7>ipy -X:FullFrames
IronPython 2.7.5 (2.7.5.0) on .NET 4.0.30319.42000 (32-bit)
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys._getframe(0)
<frame object at 0x000000000000002B>