python脚本打包发布:pyinstaller

1 安装环境

windows发行版:win7 64位
python发行版:Anaconda

2 pyinstaller安装

pip install pyinstaller

测试是否成功安装

pyinstaller --version

3.2

3 pyinstaller简例

pyinstaller helloWorld.py

or

pyinstaller --onefile helloWorld.py

命令执行会生成两个文件夹build和dist,build记录一些日志log,helloWorld.exe生成在dist文件夹内,不加–onefile参数会生成一些dll文件等。

参考

使用pyinstaller打包python为exe文件

你可能感兴趣的:(python,python)