小编Tay*_*ton的帖子

尝试使用cx_Freeze进行编译时Python崩溃

我正在尝试使用cx_Freeze编译我的python脚本,这是我的安装文件:

import cx_Freeze
import sys
import matplotlib
import os
base = None

if sys.platform == 'win32':
    base = "Win32GUI"

os.environ['TCL_LIBRARY'] = r'C:\\Python35\\tcl\\tcl8.6'
os.environ['TK_LIBRARY'] = r'C:\\Python35\\tcl\\tk8.6'

executables = [cx_Freeze.Executable("HomeScreen.py", base=base, 
icon="icon.png")]

cx_Freeze.setup(
    name = "LeagueBoost",
    options = {"build_exe":{"packages": ["sqlite3","requests","time","sys","os","statistics","matplotlib","random","collections"],
                            "include_files": ["Assets", "LeagueBoost_v1.py","LBRun.py","graphSetup.py","profilepage.py","Assets_rc.py"]}},
    version = "1",
    executables = executables
    )
Run Code Online (Sandbox Code Playgroud)

但是,当我给出cmd命令时C:/python35/python.exe,它会copying C:\python35\python35.dll -> build\exe.win-amd64-3.5\python35.dll弹出“ python停止工作”

python cx-freeze

5
推荐指数
1
解决办法
186
查看次数

标签 统计

cx-freeze ×1

python ×1