如何将 Python 程序制作成 Windows 应用程序?
How do I make a Python program into a Windows app?
我想将 python 程序变成 windows 10 或 7 应用程序,可以 运行 在 windows 台没有安装 python 的电脑上。我使用 python 3.7.
我认为这无关紧要,但以防万一,这是我的代码:
from tkinter.messagebox import showwarning
from tkinter import *
import schedule
from win10toast import ToastNotifier
toaster = ToastNotifier()
root = Tk()
root.withdraw()
def shownotification():
toaster.show_toast("Screen Time",
"Take a break for 20 seconds",
duration=5)
schedule.every(20).minutes.do(shownotification)
while True:
schedule.run_pending()
您将需要 pyinstaller 和 pip
这里有一个关于如何下载 pip 的link:https://pip.pypa.io/en/stable/installing/
打开您的终端并转到您的 python 文件所在的同一目录。
之后继续输入 pyinstaller filename.py
您可以尝试使您的应用成为图标的其他命令以及此视频中的其他命令:
我想将 python 程序变成 windows 10 或 7 应用程序,可以 运行 在 windows 台没有安装 python 的电脑上。我使用 python 3.7.
我认为这无关紧要,但以防万一,这是我的代码:
from tkinter.messagebox import showwarning
from tkinter import *
import schedule
from win10toast import ToastNotifier
toaster = ToastNotifier()
root = Tk()
root.withdraw()
def shownotification():
toaster.show_toast("Screen Time",
"Take a break for 20 seconds",
duration=5)
schedule.every(20).minutes.do(shownotification)
while True:
schedule.run_pending()
您将需要 pyinstaller 和 pip
这里有一个关于如何下载 pip 的link:https://pip.pypa.io/en/stable/installing/
打开您的终端并转到您的 python 文件所在的同一目录。
之后继续输入 pyinstaller filename.py
您可以尝试使您的应用成为图标的其他命令以及此视频中的其他命令: