Python代码打包
步骤1:下载Pyinstaller
win + R →cmd→pip安装命令
pip install pyinstaller
步骤2:准备工作
1.python代码
准备好需要打包的python代码
2.可执行文件(.exe)图标
(1)百度搜索中意图片(png、jpg、gif)→图片格式转换(.ico)
(2)图片转换网站:http://ico.duduxuexi.com/
(3)选择文件并将其转换成16*16的图片
步骤3:打包封装
cd到文件夹位置
pyinstaller -i 图.ico -F 代码.py
步骤4:得到结果嗨起来
生成的exe文件就在dist中: