简体   繁体   English

在Windows XP下运行Python二进制文件

[英]Run Python binaries under Windows XP

I compiled my PySide application to both x32 and x64 mode and it's work under Windows 7+. 我将PySide应用程序编译为x32和x64模式,并且可以在Windows 7+下运行。 However I found that the application can't start under Windows XP. 但是我发现该应用程序无法在Windows XP下启动。

Should I use some tricks in spec-file additionally? 我是否应该在spec文件中另外使用一些技巧?

Current PyInstaller script shown below in app.spec file: 当前PyInstaller脚本显示在app.spec文件中:

pyinstaller src/app.spec pyinstaller src / app.spec

# -*- mode: python -*-
import os
import platform

from PySide import QtCore


onefile = False
console = False

platform_name = platform.system().lower()
app_name = {'linux': 'app',
            'darwin': 'app',
            'windows': 'app.exe'}[platform_name]

# Include imageformats plugins
plugins=os.path.join(os.path.dirname(QtCore.__file__), "plugins\\imageformats")
static_files = Tree(plugins, 'plugins\\imageformats')
static_files += [('app.ico', 'src\\app.ico', 'DATA')]

# Analyze sources
a = Analysis(['src\\app.py'],
             hiddenimports=['pkg_resources'],
             hookspath=None,
             runtime_hooks=None)

pyz = PYZ(a.pure)

if onefile:
    exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, name=app_name,
        debug=False, strip=None, upx=True, console=console, icon='src/app.ico', version='src/app.ver')
else:
    exe = EXE(pyz, a.scripts, exclude_binaries=True, name=app_name, debug=False,
        strip=None, upx=True, console=console, icon='src/app.ico', version='src/app.ver')
    coll = COLLECT(exe, a.binaries, static_files, a.zipfiles, a.datas, strip=None, upx=True, name='app')

Eventually, I found the core problems related to this issue: 最终,我发现了与此问题相关的核心问题:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM