Python打包为EXE(可执行文件)
吧Python打包成exe,你值得掌握!
·
还记得我的 弹窗炸弹 吗?
由于我的朋友(同学)没安装Python环境,且不能让他知道我的意图
所以:我打算把它打包成 EXE 文件给他,让他尝尝人间百味
接下来我开始表演了:
首先,准备好py文件(就拿弹窗炸弹为例)
import tkinter as tk
import random
import threading
import time
def dow():
window = tk.Tk()
window.title('你是XXX')
window.geometry("200x50" + "+" + str(random.randrange(0, window.winfo_screenwidth())) + "+" + str(random.randrange(0, window.winfo_screenheight())))
tk.Label(window,
text='你是个XXX!', # 标签的文字
bg='Green', # 背景颜色
font=('楷体', 20), # 字体和字体大小
width=20, height=4 # 标签长宽
).pack() # 固定窗口位置
window.mainloop()
threads = []
for i in range(100): # 需要的弹框数量
t = threading.Thread(target=dow)
threads.append(t)
time.sleep(0.01)#间隔时间
threads[i].start()
'''
这里许多变量都可以自定义,看你喜好
'''
其次,安装Pyinstaller模块
pip install pyinstaller
貌似有亿点慢,so 我们=>
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller
用国内情话源下载,good!!!
接下来正式开始:
1.首先,打开我们的Terminal [cmd]
2.输入 cd (你py文件地址)如:
3.接下来会变成:
4.输入
pyinstaller -F -w -i mc.ico 1.py
注:-i mc.ico 是图标,必须在同一个文件夹
1.py是py文件名
5.等待执行完毕
6. 就会多这几个文件
7.打开dist这个文件夹:就会有一个exe文件,就可以发给同学了
到这里就结束了大家学废了吗?
再送大家点知识
更多推荐
已为社区贡献2条内容
所有评论(0)