如何从python文件生成exe应用程序

2022-03-24 00:00:00 python pyinstaller tkcalendar

问题描述

我正在尝试使用pyinstaller从此脚本获取.exe文件

我在test目录中时使用了此命令pyinstaller-w-F test.py

文件test.py包含

from tkinter import *
from tkcalendar import DateEntry

root = Tk()
date = DateEntry(root, year=2001, month=11, day=11, width=17,)
date.pack()
root.mainloop()

我得到的.exe文件不工作?

执行此操作时pyinstaller-F test.py在控制台上没有名为Babel.Numbers的模块出错


解决方案

似乎无法为tkcalendar解析模块babel.numbers。一种简单的方法是使用hidden-import

pyinstaller -F --hidden-import "babel.numbers" test.py

相关文章