为可执行文件指定一个不同于可执行脚本名称的名称
Posted
技术标签:
【中文标题】为可执行文件指定一个不同于可执行脚本名称的名称【英文标题】:Give a different name to the executable other than the name of the executable script 【发布时间】:2011-03-16 05:32:23 【问题描述】:我正在使用以下安装文件使用 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 之类的不同。 p>
【问题讨论】:
【参考方案1】:尝试使用targetName
选项:
executables = [Executable(targetName="myexecutable.exe")]
【讨论】:
以上是关于为可执行文件指定一个不同于可执行脚本名称的名称的主要内容,如果未能解决你的问题,请参考以下文章