为可执行文件指定一个与可执行脚本名称不同的名称

问题描述 投票:0回答:3

我正在使用以下安装文件来使用 cx_freeze 创建可执行文件。是否可以生成与可执行脚本名称不同的名称的 exe?

from cx_Freeze import setup, Executable 
import xlrd  
buildOptions = dict(                 
                 compressed = True,
                 optimize=2,                 
                 path=sys.path+[".\\uitls", “.\\supported”], 
                 include_files=[“Doc"],                 
                 includes=[“xlrd”, "win32com"],
                 packages=["utils", ”supported"],
                 append_script_to_exe=True,
                 copy_dependent_files=True,
                  ) 
setup(
                 name = "TestExecutable",
                 version = "0.1",
                 options = dict(build_exe = buildOptions),
                           executables = [Executable(script=r".\\codebase\\runner.py",
                           icon=".\\icon.ico",
                           base="Win32GUI")]                
     )  

现在创建的 exe 的名称为 runner.exe,我希望它是不同的名称,例如 myexecutable.exe 重命名可执行文件,但脚本无法正常工作,因为脚本被包模块进一步引用。

python cx-freeze
3个回答
9
投票

尝试使用

targetName
选项:

executables = [Executable(targetName="myexecutable.exe")]

较新的版本请使用

target_name
,因此,如果您使用的是最新的 cx_Freeze 版本,请使用

executables = [Executable(target_name="myexecutable.exe")]

1
投票

新的关键字样式是

target_name

executables = [Executable(target_name="myexecutable.exe")]

0
投票

只需在里面使用关键字

"target_name"
Executable(target_name = "my_executable")

根据操作系统保留可执行文件的名称

windows or linux

© www.soinside.com 2019 - 2024. All rights reserved.