將Python打包成執行檔 - PyInstaller
本帖最後由 tonyh 於 2022-7-16 18:07 編輯
PyInstaller 的使用可參考官方網頁 https://pyinstaller.org/en/stable/installation.html
安裝- pip install https://github.com/pyinstaller/pyinstaller/tarball/develop
複製代碼 打包- pyinstaller -F -w 檔案名稱.py
複製代碼- import tkinter as tk
- import time as t
- win=tk.Tk()
- win.attributes("-toolwindow", 1) #設定工具列樣式 (屬性可設 1 或 True)
- win.attributes("-topmost", 1) #設定置頂
- win.title("小時鐘")
- win.resizable(0,0)
- lbtext=tk.StringVar()
- def showTime():
- lbtext.set(t.strftime("%Y/%m/%d %a %H:%M:%S"))
- win.after(1000, showTime) #視窗每隔1000毫秒執行一次showTime()
- lb=tk.Label(win,bg="black",fg="white", textvariable=lbtext,font=("微軟正黑體",16),
- width=25,height=3,anchor="center").pack()
- showTime()
- win.mainloop()
複製代碼 |