1
在abaqus腳本編寫過程中遇到問題。我正在嘗試在abaqus scipt中使用tkinter。當我運行我的第一次代碼的程序運行正常,但是當我運行我的程序,第二次,然後用ABAQUS以下錯誤退出: 「意外LoadlibraryA錯誤193 ipc_CONNECTION_BROKEN」在Abaqus中導入tkinter時出錯
我使用ABAQUS 6.14與Python 2.7 與英特爾Paralllal Stuido XE 2015年作曲家版64位更新運行2
我的插件類,如下所示:
from abaqusGui import getAFXApp, Activator
from abaqusConstants import ALL
import os
thisPath = os.path.abspath(__file__)
thisDir = os.path.dirname(thisPath)
toolset = getAFXApp().getAFXMainWindow().getPluginToolset()
toolset.registerGuiMenuButton(
buttonText='Pilot GUI',
object= Activator(os.path.join(thisDir, 'pilotDB.py')),
kernelInitString=''
)
我pilotDB類看起來是這樣的:
class pilotDB:
import Tkinter
root = Tkinter.Tk()
app = pilotDB(root)
root.mainloop()
root.quit()