我正在尝试使用pyinstaller从此脚本获取.exe文件
我在测试目录中时使用了此命令 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的模块的错误
答案 0 :(得分:1)
似乎PyInstaller无法为babel.numbers
解析模块tkcalendar
。一种简单的方法是使用hidden-import
:
pyinstaller -F --hidden-import "babel.numbers" test.py