在avc上的Pyinstaller

时间:2013-09-21 11:41:17

标签: python pyinstaller

如何在使用AVC(http://avc.inrim.it/html/)的python脚本上使用Pyinstaller?

我以正常方式尝试过,输出可执行应用程序抛出错误。:

ImportError: No module named avc.avcgtk

[编辑]

我已经使用pip安装了pygtk和avc。 从这里使用的示例脚本,在python上运行正常: http://avc.inrim.it/examples/gtk_spinbutton.py http://avc.inrim.it/examples/gtk_spinbutton.glade

1 个答案:

答案 0 :(得分:0)

我不知道这是怎么发生的。

对于使用python正常运行该示例脚本,只需要from avc import * 但由于某些原因,pyinstaller没有找到avc.avcgtk模块,因此在使用pyinstaller创建独立应用程序时还需要额外的虚拟导入。

from avc import *
import avc.avcgtk