windows发行版:win7 64位
python发行版:Anaconda
pip install pyinstaller
测试是否成功安装
pyinstaller --version
3.2
pyinstaller helloWorld.py
or
pyinstaller --onefile helloWorld.py
命令执行会生成两个文件夹build和dist,build记录一些日志log,helloWorld.exe生成在dist文件夹内,不加–onefile参数会生成一些dll文件等。
使用pyinstaller打包python为exe文件