我正在尝试冻结我的 Windows 应用程序。它使用 PyQt4 并基于 Python 2.7 构建。所有编译和工作都很好,但只在我的电脑上。在没有安装 Python的其他 PC 上,出现错误:
File "quirinus.py", line 4, in <module>
File "zipextimporter.pyc", line 82, in load_module
File "bin\core.pyc", line 17, in <module>
File "bin\xstring.pyc", line 19, in str2unicode
File "encodings\utf_8.pyc", line 16, in decode
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd1 in position 3: invalid continuation byte
这是我的 setup.py 的代码:
from distutils.core import setup
import py2exe, sys, os
from glob import glob
data_files = [('Microsoft.VC90.CRT', glob(r'..\Microsoft.VC90.CRT\*.*'))]
sys.path.append(r'..\Microsoft.VC90.CRT')
sys.argv.append('py2exe')
py2exe_options = dict(
includes=['sip',
'encodings',
'encodings.ascii',
'encodings.utf_8',
'encodings.cp866'],
excludes=['_ssl', 'pyreadline', 'difflib', 'doctest',
'tarfile', 'bz2', 'zipfile', 'optparse', 'pickle',
'pywin', 'pywin.debugger', 'pywin.debugger.dbgcon',
'pywin.dialogs', 'pywin.dialogs.list', 'calendar',
'Tkconstants', 'Tkinter', 'tcl', '_gtkagg', '_tkagg',
'bsddb', 'curses', 'email', 'Tkconstants', 'Tkinter'],
dll_excludes=['msvcp90.dll', 'msvcr90.dll', 'msvcm90.dll',
'libgdk-win32-2.0-0.dll', 'libgobject-2.0-0.dll',
'tcl84.dll', 'tk84.dll'],
compressed=True
)
setup(
name='Quirinus',
author='Dmitriy Selyutin',
author_email='ghostmansd@google.com',
description='Quirinus: Dictionary',
version='0.1',
windows = \
[
{
'script': 'quirinus.py',
'icon_resources': [(0, 'icons/icon.ico')]
}
],
options={'py2exe': py2exe_options},
zipfile = None,
data_files = data_files
)
这是运行冻结的命令:python.exe .\setup.py py2exe -b 1
我项目中的每个源文件的开头都有“编码”行:
# coding: UTF-8
因为我认为我已经尽一切努力使 Unicode 工作良好。它适用于每台装有 Python 的计算机。:-) 但是当计算机没有 Python 时,应用程序会失败。有没有人出现过这个问题?
PS 我也尝试过使用 PyInstaller ( python.exe .\pyinstaller.py -F -w
) 冻结,但冻结的应用程序无法运行。是的,我在源代码中的所有字符串都具有以下形式:u'string'。