pyinstaller使用总结

来源:互联网 发布:数据挖掘考研大学 编辑:程序博客网 时间:2024/05/22 02:13

Github下载地址:https://github.com/pyinstaller/pyinstaller/

1、下载完成后解压缩,然后在文件夹pyinstaller-develop下,将你的py文件放入
2、shift+鼠标右键打开命令行
3、运行python pyinstaller.py -F 你的文件.py
4、生成 你的名字 文件夹,里面的dist文件夹里就是你的exe

0 0