Pythonnet从导入崩溃

时间:2015-06-18 10:24:06

标签: c# python-2.7 python.net

根据.NET框架4的oleskii程序重新编译pythonent的解决方案项目后,我的代码出现问题。以下是崩溃发生的前几行。

import sys, clr

sys.path.append ("G:/bin_EESPORt")
clr.AddReference ("ASAM.HILAPI.Implementation")
clr.AddReference ("ASAM.HILAPI.Interfaces")
clr.AddReference ("dSPACE.HILAPI.EESPort")
clr.AddReference ("dSPACE.HILAPI.EESPort.Interfaces")


from System import *
from System.IO import *
from System.Threading import *
from ASAM.HILAPI.dSPACE.EESPort import *   #here crash pythonwin
from ASAM.HILAPI.Implementation.EESPort.Error import *
from ASAM.HILAPI.Interfaces.EESPort import *
from ASAM.HILAPI.Interfaces.EESPort.Enum import *
from ASAM.HILAPI.Interfaces.EESPort.ErrorFactory import *
from ASAM.HILAPI.Interfaces.EESPort.ErrorObjects import *

所以在调试模式下我的工具PythonWin崩溃(它冻结并引发错误pywin32)在线: 来自ASAM.HILAPI.dSPACE.EESPort import * #here crash pythonwin

Pc系统是Windows 7 64位。 在win32上,IDE是带有python 2.7.9 MSC v.1500 32位(Intel)的PythonWin。 安装的框架包括:.NET Framework 4 Client Profile,.NET Framework 4 Extended,.NET Framework 4 Targeting Multi-Pack和Visual C#2010 Express。

感谢您提前获得帮助,我真的需要您的帮助。

0 个答案:

没有答案