1
私は自分のビルドでは必要ないいくつかのライブラリを排除しようとしていますが、リストに追加してもビルドログに表示されます。Cx_freeze不要なライブラリを除外
これはビルドのための私のコードです。
from cx_Freeze import setup, Executable
build_exe_options = {"excludes": ["tkinter", "PIL"], "include_files":
['bin'], "optimize": 2}
setup(
author="secret",
name="app",
options={"build_exe": build_exe_options},
version="1.0",
description="something",
executables=[Executable("app.py", base="Console")])
何が欠けていますか?