安装依赖
pip install pyinstaller
How to Install PyInstaller — PyInstaller 6.6.0 documentation
进入需要打包的脚本的目录
cd <script_dir>
打包
pyinstaller main.py --onefile
-- onefile: 打包一个文件成可执行文件。(或者用缩写,-F)
-- noconsole:可以不打开终端
打包完成后会在当前目录生成两个文件夹,在dist文件夹里会有一个exe文件,就是打包好的可执行文件
参考
How to turn your Python file (.py) into an .exe (Tutorial 2021) (youtube.com)