python3打包成exe---pyinstaller方法

前言:

主要介绍python3的pyinstaller打包方法

pyinstaller安装参考地址:http://www.pyinstaller.org/

pywin32的下载地址:https://sourceforge.net/projects/pywin32/files/pywin32/(下载对应的版本)

准备工作:

安装好了python3并能正常使用;

编写好了一个程序项目并能正常运行;

win7X64系统

步骤:

1.安装pyinstaller

cmd中进入python的pip文件的所在目录执行命令

pip install pyinstaller

出现如下界面表示安装成功。

python3打包成exe---pyinstaller方法

2.cmd中进入要打包的项目的py文件所属目录(py文件可以放到电脑任意位置)

python3打包成exe---pyinstaller方法

3.cmd中执行命令

pyinstaller testTk.py

python3打包成exe---pyinstaller方法

出现如下页面表示成功。

python3打包成exe---pyinstaller方法

4.步骤2的目录中会多出几个文件夹,exe程序在dist文件下,可双击直接运行。

要生成单个的exe文件可参考网址:https://www.crifan.com/use_pyinstaller_to_package_python_to_single_executable_exe/

 
上一篇:【题解】Luogu UVA12345 Dynamic len(set(a[L:R]))


下一篇:android TextView多行文本(超过3行)使用ellipsize属性无效问题的解决方法