从 Mac 到 Windows PC 运行我的 Tkinter Python 应用程序

问题描述 投票:0回答:1

我在我的 Mac 笔记本电脑上创建了一个 Tkinter Python 应用程序,它运行得很好。 我选择 Tkinter 的原因是它可以在没有网络的情况下工作。

这是我的应用程序结构:

 TkinterApp>
   app.py
   client_list.db
   Invoices
   invoice_template.docx
   sales.db

现在我需要在我朋友的 Windows 笔记本电脑上运行这个应用程序,但我希望它一键打开,而不是像我一样在 python 中运行它,我还需要文件夹 Invoices,因为这是我保存生成的 Invoices 的地方从应用程序。

以前有人做过这个吗,你能帮我吗?

python windows macos tkinter
1个回答
0
投票

您可以使用名为 PyInstaller 的库来创建可执行文件 (.exe)。这是文档的链接

© www.soinside.com 2019 - 2024. All rights reserved.