web-dev-qa-db-ja.com

tkinterをexeに変換する

現在、tkinter pythonスクリプトをexeファイルに変換しようとしています。cx_freezeを使用してこれを行っています。追加のファイルを追加しようとすると、どういうわけか機能しなくなります。以下で使用している最小限の例では、私が使用した方法を確認できます。

import tkinter as tk

import numpy.core._methods, numpy.lib.format 

class Main(tk.Tk):

    def __init__(self, *args, **kwargs):
        tk.Tk.__init__(self, *args, **kwargs)

        self.geometry("700x400")
        self.wm_iconbitmap('test.ico')

        container = tk.Frame(self)

        container.pack(side="top", fill="both", expand = True)

        container.grid_rowconfigure(0, weight=1)
        container.grid_columnconfigure(0, weight=1)

        self.frames = {}

        for F in (StartPage, PageOne):

            frame = F(container, self)
            self.frames[F] = frame
            frame.grid(row=0, column=0, sticky="nsew")

        self.show_frame(StartPage)

    def show_frame(self, cont):
        frame = self.frames[cont]
        frame.tkraise()        
        frame.update_page() # <-- update data on page when you click button

    def get_page(self, page_class):
        return self.frames[page_class]


class StartPage(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller 

        label1 = tk.Label(self, text="What are the sizes?")
        label1.pack()

        L1 = tk.Label(self, text="Length :")
        L1.pack()

        self.E1 = tk.Entry(self)
        self.E1.pack()

        button = tk.Button(self, text="Next", command=lambda: controller.show_frame(PageOne))
        button.pack()

    def update_page(self): # empty method but I need it
        pass   

class PageOne(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller

        label1 = tk.Label(self, text="You have insert")
        label1.pack()

        # create empty label at start
        self.label2 = tk.Label(self, text="")
        self.label2.pack()

        button = tk.Button(self, text="Back", command=lambda: controller.show_frame(StartPage))
        button.pack()

    def update_page(self):
        # update label when page is changed
        page1 = self.controller.get_page(StartPage) 
        var = page1.E1.get()
        self.label2['text'] = var


app = Main()
app.mainloop() 

2番目のスクリプト:

import cx_Freeze
import sys
import matplotlib 
import os 
import numpy.core._methods
import numpy.lib.format

base = None 

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


executables = [cx_Freeze.Executable("Show_file.py")]    

cx_Freeze.setup(
        name = "Name",
        options = {"build_exe":{"packages":["tkinter","matplotlib"],"include_files":["test.ico"]}},
        version="0.01",
        executables=executables) 

Exeファイルをビルドしようとすると、アイコンを追加しないと機能します。ただし、アイコンを追加しようとすると、exeが開きません。さらに、データベースのExcelファイルを追加しようとすると、そのようなファイルが存在しないというメッセージが表示されます。 Alloファイルは正しいフォルダにあります。それは問題ではありません。

誰かがこの問題を手伝ってくれませんか?

よろしくお願いします。

5
Beertje

タイトルが言うようにConverting tkinter to exe信じられません pyinstaller この場合、言及する価値があります。

インターネット上でより良い pyinstallerまたはcx_Freeze についてはいくつかの議論がありますが、pyinstallerの方が単純であることがわかり、tkinterを使用することで問題なく動作しました。 cmdのワンライナー:

pyinstaller.exe --onefile --icon=myicon.ico main.py

--onefileオプションは、多数ではなく1つの出力ファイルを生成します。

--iconは、選択したアイコンを接続します。

main.pyは、main関数を含むメインファイルです。

10
akarilimano

Tkinterランタイムとライブラリがありません。それらを含めるには、os.environ()を使用して、_include_files_引数を使用してランタイムを含めることをお勧めします ここ

os.environ()の使用は簡単です。たとえば、次のように実行できます。

_os.environ["TCL_LIBRARY"] = "<PathToPython>\\Python\\Python36-32\\tcl\\tcl8.6"
os.environ["TK_LIBRARY"] = "<PathToPython>\\Python\\Python36-32\\tcl\\tk8.6"
_

次に、ランタイム(DLL)をインクルードファイルの引数に含めます。

_    options = {"build_exe":{"packages":["tkinter","matplotlib"],"include_files":["test.ico", "<PathToPython>\\Python\\Python36-32\\DLLs\\tcl86t.dll", "<PathToPython>\\Python\\Python36-32\\DLLs\\tk86t.dll"]}},
_

これで、セットアップスクリプト全体は次のようになります。

_import sys # Imports are automatically detected (normally) in the script to freeze
import os 

base = None 

os.environ["TCL_LIBRARY"] = "<PathToPython>\\Python\\Python36-32\\tcl\\tcl8.6"
os.environ["TK_LIBRARY"] = "<PathToPython>\\Python\\Python36-32\\tcl\\tk8.6"

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


executables = [cx_Freeze.Executable("Show_file.py")]    

cx_Freeze.setup(
        name = "Name",
        options = {"build_exe":{"packages":["tkinter","matplotlib"],"include_files":["test.ico", "<PathToPython>\\\\Python\\Python36-32\\DLLs\\tcl86t.dll", "<PathToPython>\\\\Python\\Python36-32\\DLLs\\tk86t.dll"]}},
        version="0.01",
        executables=executables) 
_

セットアップスクリプトで使用するすべてのインポートが必要なわけではなく、cx_Freezeが自動的に検出します。

1
Simon