如何使用py2exe将Python PySide文件冻结到一个exe文件?

时间:2016-01-11 13:20:07

标签: python pyside py2exe

我尝试将我的Python PySide文件冻结为exe,当我使用'bundle_files': 3进行此操作时效果很好但是当我尝试使用'bundle_files': 1时,我会收到此错误记录:

WindowsError: [Error 3] The system cannot find the path specified

这是我的setup.py:

from distutils.core import setup
import py2exe, sys, os

sys.argv.append('py2exe')

setup(
    excludes=['_ssl',  # Exclude _ssl
                                    'pyreadline', 'difflib', 'doctest', 'locale',
                                    'optparse', 'pickle', 'calendar'],  # Exclude standard library
    dll_excludes=['msvcr71.dll'],  # Exclude msvcr71
    compressed=True,  # Compress library.zip
    options = {'py2exe': {'bundle_files': 1, 'compressed': True}},
    windows = [{'script': "myFile.py", "icon_resources": [(1, "icon.ico")]}],
    zipfile = None,
)

这是日志:

Traceback (most recent call last):
File "MultiClipboard.py", line 4, in <module>
File "zipextimporter.pyc", line 82, in load_module
File "PySide\__init__.pyc", line 41, in <module>
File "PySide\__init__.pyc", line 11, in _setupQtDirectories
File "PySide\_utils.pyc", line 97, in get_pyside_dir
File "PySide\_utils.pyc", line 88, in _get_win32_case_sensitive_name
File "PySide\_utils.pyc", line 63, in _get_win32_short_name
WindowsError: [Error 3] The system cannot find the path specified.

1 个答案:

答案 0 :(得分:1)

Py2exe 不支持64-bit machines上的此功能。如果您需要将所有项目捆绑到一个文件中,则应尝试使用 pyinstaller 而不是