程序有效但启动时会出现错误弹出控制台

时间:2017-12-31 17:00:37

标签: python numpy wxpython py2exe

控制台出错:

OMP: Warning #178: Function GetModuleHandleEx failed:
OMP: System error #126: The specified module could not be found.

Py2exe成功编译脚本,但此控制台也会弹出。我试图隧道错误,但窗口仍然显示,错误日志为空。 这些是我的进口商品:

  

wx,wx.lib.dialogs,openpyxl,wx.grid,re,string,functools.partial,   cPickle,os,datetime.datetime

我应该补充一点,我将MSVCP90.DLL和LIBIOMP5MD.DLL放在安装程序的目录中。

解: 将这些行添加到安装程序修复了我的问题:

'py2exe': { "dll_excludes": ["MSVCP90.dll", "libiomp5md.dll"] }

0 个答案:

没有答案