使用 Pyinstaller 为我的文件制作一个工作 exe 时遇到问题

Having trouble making a working exe using Pyinstaller for my file

我有一个简单的代码,我正试图将其制作成 .exe 文件。该文件导入了 tkinter 和 pandastable,还从名为 list_of_games.csv 的 CSV 文件导入。当我尝试 运行 创建 exe 文件时,它只是打开命令提示符,什么都不做。

我正在尝试使用 .spec 文件制作 exe,其中包含以下隐藏的导入和数据(其他所有内容均保留为默认值):

datas=[('list_of_games.csv','.')],  
hiddenimports=['pandas','pandastable','matplotlib.pyplot','os','sys'],  

这是有问题的代码,如果我需要修改其中的任何内容才能使其正常工作:

from tkinter import *
from tkinter import font
from pandastable import Table, config

root = Tk()  
root.geometry("1225x700+150+40")  
root.title('Video Game Database')  

frame = Frame(root, bg='light blue', bd=5)  
frame.pack(fill='both', expand=True)  

table = Table(frame, showtoolbar=True, showstatusbar=True)  
table.autoResizeColumns()  

options = config.load_options()  
options = {'font': 'Calibri',  
             'fontsize': 11,  
             'rowselectedcolor': 'light green',  
             'colheadercolor': 'green'}  
config.apply_options(options, table)  

table.importCSV('list_of_games.csv')  

table.redraw()  
table.show()  

root.mainloop()  

任何人都可以提供任何帮助,我们将不胜感激,谢谢。

尝试添加新版本的 Auto-Py-To-Exe Auto-Py-To-Exe

然后从 GitHub

下载 Zip 文件

GitHub

然后使用该 .exe 文件将您的 .Py 文件转换为其 Exe 应用程序