私のpyファイルをcx_freezeを使って.exeに変換しました。打ち上げ時。それは未確認のエラーです。 cx_freeze&tkinter
https://www.upload.ee/image/7186947/Erir.PNG
MY setup.py
from cx_Freeze import setup, Executable
import os
import sys
import os.path
PYTHON_INSTALL_DIR = os.path.dirname(os.path.dirname(os.__file__))
os.environ['TCL_LIBRARY'] = os.path.join(PYTHON_INSTALL_DIR,'tcl','tcl8.6')
os.environ['TK_LIBRARY'] = os.path.join(PYTHON_INSTALL_DIR, 'tcl', 'tk8.6')
setup(
name = "Removed",
version = "3.5",
description = "Removed",
executables = [Executable(script = "test1.py", base = "Win32GUI")])
この投稿をご覧ください:https://stackoverflow.com/questions/44845123/convert-tkinter-py-file-into-exe-file/44845504?noredirect=1#comment76671428_44845504 – RyanU
試してみました助けられたが..不幸なことに。 – NoAimNoGame
セットアップオプションで2つのDLLパスをどこに追加したのか分かりません(別の記事で説明しています)。 – RyanU