py2exe:UnicodeDecodeError(无法解码字节0xd1)

时间:2012-02-09 19:17:10

标签: python py2exe cx-freeze

我正在尝试冻结我的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时,应用程序就失败了。有没有人发生过这个问题?

P.S。我也试图冻结使用PyInstaller(python.exe .\pyinstaller.py -F -w),但冻结的应用程序不运行。是的,我在源代码中的所有字符串都有以下形式:u'string'。

1 个答案:

答案 0 :(得分:0)

我认为问题不在于是否在其他PC上安装了python。我想你应该再看看另一台PC上的处理器规格,与你的规格相比。

冻结可能是特定于处理器的,因此您可能遇到跨处理器兼容性问题