如何将python文件py打包成exe图形界面-使用Pyinstaller
2020年10月19日
| 标签:
首先电脑安装python 可执行文件 且添加到环境变量
下载网址如下
第二步 使用命令行
第三部 使用pip安装软件包 pyinstaller
输入cmd 然后输入
pip install pyinstaller
第4部 保存py文件
以下是样本文件 py,保存为hello.py
import tkinter as tk root= tk.Tk() canvas1 = tk.Canvas(root, width = 300, height = 300) canvas1.pack() def hello (): label1 = tk.Label(root, text= 'Hello World!', fg='green', font=('helvetica', 12, 'bold')) canvas1.create_window(150, 200, window=label1) button1 = tk.Button(text='Click Me',command=hello, bg='brown',fg='white') canvas1.create_window(150, 150, window=button1) root.mainloop() 然后把文件保存下面路径
C:\Users\Ron\Desktop\MyPython
这个文件命名为hello.py
第5步 使用pyinstaller 制作exe文件
使用cmd命令 进入文件路径
cd C:\Users\Ron\Desktop\MyPython
使用pystaller命令生成
pyinstaller --onefile pythonScriptName.py 根据上面文件的命名规则 这里使用hello,如下
pyinstaller --onefile hello.py
然后按回车
第6部 执行exe文件
可以在 dist 文件夹下看到
hello变成了exe文件
当你点击后 就会执行程序
因为我们的代码是输出hello world 就变成如下了
发表评论
| Trackback