我正在使用以下安装文件来使用 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 重命名可执行文件,但脚本无法正常工作,因为脚本被包模块进一步引用。
尝试使用
targetName
选项:
executables = [Executable(targetName="myexecutable.exe")]
较新的版本请使用
target_name
,因此,如果您使用的是最新的 cx_Freeze 版本,请使用
executables = [Executable(target_name="myexecutable.exe")]
新的关键字样式是
target_name
executables = [Executable(target_name="myexecutable.exe")]
只需在里面使用关键字
"target_name"
Executable(target_name = "my_executable")
根据操作系统保留可执行文件的名称
windows or linux