【Python3】py脚本打包成exe

0x00选择

对比

0x01PyInstaller

The official website:http://www.pyinstaller.org/
Install PyInstaller from PyPI:pip install pyinstaller
Go to your program’s directory and run:pyinstaller -F yourprogram.py
原理:把py解释器一起打包了。。。
找到:exe在dist文件夹里面

0x02占坑待填

原文地址:https://www.cnblogs.com/gwj1314/p/9444882.html