安装:
pip install pyinstaller
打包:
基本打包命令:
pyinstaller your_script.py
打包为单一可执行文件:
pyinstaller --onefile your_script.py
2023-11-20