5

我正在使用以下安装文件使用 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 之类的不同。

4

1 回答 1

8

尝试使用以下targetName选项:

executables = [Executable(targetName="myexecutable.exe")]
于 2011-03-16T05:44:32.197 回答