导语:
哈喽,哈喽呀~今天小编给大家分享一个随机点名的系统并把它打包成exe,压迫感来了没有~
一、实现随机点名
# -*- coding: UTF-8 -*-
import tkinter as tk
from pandas import read_excel
from random import randint
# 读取数据
df1 = list(read_excel(r'.\学生名单_test.xls')['姓名'])
df2 = list(read_excel(r'.\学生名单_test.xls')['性别'])
def roll_call(): # 点名
index_ = randint(0, len(df1) - 1) # 产生随机索引
name = df1.pop(index_) # 弹出随机索引对应的姓名
sex = df2.pop(index_) # 弹出随机索引对应的性别
t.insert('insert', f'{name} {sex}\n') # 插入到tkinter界面
win = tk.Tk()
# 设置窗口title和大小
win.title('随机点名系统')
win.geometry('600x600')
# Entry 单行文本
L = tk.Label(win, bg="yellow", text="随机点名系统", font=("KaiTi", 26), width=36, height=3)
L.place(x=0, y=0)
# 设置随机点名按钮 退出系统按钮
b1 = tk.Button(win, bg='red', text="随机点名", width=25, height=2, command=roll_call)
b1.place(x=80, y=200)
b2 = tk.Button(win, bg='red', text="退出系统", width=25, height=2, command=win.quit)
b2.place(x=325, y=200)
# Entry 单行文本
L = tk.Label(win, text="点到的学生名单如下", font=("KaiTi", 18), width=36, height=1)
L.place(x=90, y=315)
# 设置多行文本框 宽 高 文本框中字体 选中文字时文字的颜色
t = tk.Text(win, width=36, height=8, font=("KaiTi", 24), selectforeground='red') # 显示多行文本
t.place(x=10, y=350)
win.mainloop()
运行效果如下:
二、pyinstaller打包成exe
PyInstaller是一个跨平台的Python应用打包工具,支持Windows/Linux/MacOS三大主流平台,能够允许用户在没有安装 Python 的情况下执行应用程序。
pyinstaller安装
pip install pyinstaller -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pyinstaller打包python程序
PyInstaller 最简单使用只需要指定作为程序入口的脚本文件。
PyInstaller 执行打包程序后会在当前目录下创建下列文件和目录:main.spec 文件,其前缀和脚本名相同,指定了打包时所需的各种参数;build 子目录,其中存放打包过程中生成的临时文件。warnxxxx.txt文件记录了生成过程中的警告/错误信息。如果 PyInstaller 运行有问题,需要检查warnxxxx.txt文件来获取错误的详细内容。xref-xxxx.html文件输出PyInstaller 分析脚本得到的模块依赖关系图。dist子目录,存放生成的最终文件。如果使用单文件模式将只有单个执行文件;如果使用目录模式的话,会有一个和脚本同名的子目录,其内才是真正的可执行文件以及附属文件。
命令行输入以下代码:
pyinstaller -F -i .icon图标文件路径 .py文件路径
-F | --onefile:生成单一的可执行文件 -i | --icon:为执行文件指定图标
默认生成在C盘,找到dist文件夹里的带图标的exe程序,双击运行,正常运行进入程序可以玩说明打包程序成功。
运行效果如下:
三、解决使用pyinstaller打包程序时出现RecursionError 报错
RecursionError: maximum recursion depth exceeded
执行 pyinstaller,虽然报错,但会生成 your_filename.spec文件
pyinstaller -F your_filename.py
在C盘找到 your_filename.spec 文件,打开进行编辑,添加以下语句
# 对递归深度进行设置import syssys.setrecursionlimit(100000)
再次执行 pyinstaller 和 your_filename.spec文件
pyinstaller C:\Users\Administrator\your_filename.spec
成功将python程序打包成exe,解决了问题。
结语
以上就是这篇文章的全部内容了,大家喜欢的记得点点赞,需要完整的项目源码的可以私信我即可哟!这行蓝色的字体也行wo~,谢谢大家对小编的支持。