如何将python文件py打包成exe图形界面-使用Pyinstaller

2020年10月19日 | 标签:

首先电脑安装python 可执行文件 且添加到环境变量

下载网址如下

downloading

install python

第二步  使用命令行

 

command prompt

第三部 使用pip安装软件包 pyinstaller

输入cmd 然后输入

pip install pyinstaller

 

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

Python Script

第5步 使用pyinstaller 制作exe文件

使用cmd命令 进入文件路径

cd C:\Users\Ron\Desktop\MyPython

 

Command Prompt Windows

使用pystaller命令生成

pyinstaller --onefile pythonScriptName.py
根据上面文件的命名规则 这里使用hello,如下
pyinstaller --onefile hello.py

 

Create Executable from Python Script using Pyinstaller

然后按回车

第6部 执行exe文件

 

可以在  dist 文件夹下看到

Executable Pyinstaller

hello变成了exe文件

How to Create Executable from Python Script using Pyinstaller

当你点击后 就会执行程序

 

Create Executable using Pyinstaller

因为我们的代码是输出hello world 就变成如下了

Create Executable from Python Script using Pyinstaller

 

目前还没有任何评论.