返回列表 發帖

將Python打包成執行檔 - PyInstaller

本帖最後由 tonyh 於 2022-7-16 18:07 編輯

PyInstaller 的使用可參考官方網頁 https://pyinstaller.org/en/stable/installation.html

安裝
  1. pip install https://github.com/pyinstaller/pyinstaller/tarball/develop
複製代碼
打包
  1. pyinstaller -F -w 檔案名稱.py
複製代碼
  1. import tkinter as tk
  2. import time as t
  3. win=tk.Tk()
  4. win.attributes("-toolwindow", 1)  #設定工具列樣式 (屬性可設 1 或 True)
  5. win.attributes("-topmost", 1)     #設定置頂
  6. win.title("小時鐘")
  7. win.resizable(0,0)
  8. lbtext=tk.StringVar()

  9. def showTime():
  10.     lbtext.set(t.strftime("%Y/%m/%d  %a  %H:%M:%S"))
  11.     win.after(1000, showTime)      #視窗每隔1000毫秒執行一次showTime()

  12. lb=tk.Label(win,bg="black",fg="white", textvariable=lbtext,font=("微軟正黑體",16),
  13.             width=25,height=3,anchor="center").pack()
  14. showTime()
  15. win.mainloop()
複製代碼

返回列表