pyinstaller将Python脚本打包成可执行程序

1. 什么是pyinstaller:

pyinstaller可以将python代码打包为可执行的exe文件

2. 安装:

pip install pyinstaller

3:使用

pyinstall {可选参数} youprogram

可选参数

  • –onefile 将结果打包成一个可执行文件
  • –onedir 将所有结果打包到一个文件夹中,该文件夹包括一个可执行文件和可执行文件执行时需要的依赖文件(默认)
  • –paths=DIR 设置导入路径
  • –distpath=DIR 设置将打包的结果文件放置的路径
  • –specpath=DIR 设置将spec文件放置的路径
  • –windowed 使用windows子系统执行,不会打开命令行(只对windows有效)
  • –nowindowed 使用控制台子系统执行(默认)(只对windows有效)
  • –icon=

实例(windows系统下)

在E盘下面有一个t.py文件

pyinstaller将Python脚本打包成可执行程序_第1张图片

然后打开cmd,cd到code/1/ ,执行pyinstaller –onefile t.py

最后会在dist文件夹下生成.exe文件

pyinstaller将Python脚本打包成可执行程序_第2张图片

你可能感兴趣的:(Python)