下载PyInstaller
bash
pip install pyinstaller
验证是否安装成功
bash
pyinstaller --version
打包
bash
pyinstaller "C:\Documents and Settings\project\myscript.py"
会生成.spec,build,dist三项,其中build,dist为文件夹,dist包含最后的可执行文件,build包含生成过程信息
bash
-n 或者--name //指定生成的exe名称