使用pyinstaller打包pygtk应用程序

时间:2014-04-16 14:31:10

标签: python pyinstaller

我想创建pygtk应用程序的可执行文件,使其在任何计算机上运行而无需安装软件包。

我尝试使用pyinstaller。但是当我在不同的机器和文本上运行时出现以下错误看起来像GUI中的方框

/tmp/_MEIwDbvRA/User.py:88: GtkWarning: Cannot open pixbuf loader module file '/home /arrowdevices/pda/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache': No such file or directory
/tmp/_MEIwDbvRA/User.py:197: PangoWarning: No modules found:
No builtin or dynamically loaded modules were found.
PangoFc will not work correctly.
This probably means there was an error in the creation of:
   '/home/arrowdevices/pda/etc/pango/pango.modules'
You should create this file by running:
  pango-querymodules > '/home/arrowdevices/pda/etc/pango/pango.modules'
Fontconfig warning: "/etc/fonts/conf.d/11-lcd-filter-lcddefault.conf", line 9: invalid constant used : lcddefault
Fontconfig warning: "/etc/fonts/conf.d/53-monospace-lcd-filter.conf", line 17: invalid constant used : lcdlegacy
/tmp/_MEIwDbvRA/User.py:197: PangoWarning: failed to find shape engine, expect ugly output. engine-type='PangoRenderFc', script='latin'
/tmp/_MEIwDbvRA/User.py:197: PangoWarning: failed to find shape engine, expect ugly output. engine-type='PangoRenderFc', script='common'
/tmp/_MEIwDbvRA/User.py:197: GtkWarning: Cannot open pixbuf loader module file '/home/arrowdevices/pda/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache': No such file or directory

我的问题:

  1. 如何使用pyinstaller创建独立的pygtk应用程序(逐步说明)?

  2. 如何将我在应用程序中使用的所有图像/字体与应用程序捆绑在一起?

  3. 注意:我已经通过使用python 2.7将源代码编译到本地目录,安装了gtk和pygtk包(带依赖 - glib,atk,cairo,pango,pycairo,pygobject,gdk-pixbuf)。

0 个答案:

没有答案