51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

通过pyinstaller将Python脚本转exe可执行文件

介绍

使用pip安装 pyinstaller

C:\Windows\system32>pip install pyinstaller

常用命令参数

| -h,--help | 查看该模块的帮助信息 | |---------------------------|---------------------------------------------------------------------------------------| | -F,-onefile | 产生单个的可执行文件 | | -D,--onedir | 产生一个目录(包含多个文件)作为可执行程序 | | -a,--ascii | 不包含 Unicode 字符集支持 | | -d,--debug | 产生 debug 版本的可执行文件 | | -w,--windowed,--noconsolc | 指定程序运行时不显示命令行窗口(仅对 Windows 有效) | | -c,--nowindowed,--console | 指定使用命令行窗口运行程序(仅对 Windows 有效) | | -o DIR,--out=DIR | 指定 spec 文件的生成目录。如果没有指定,则默认使用当前目录来生成 spec 文件 | | -p DIR,--path=DIR | 设置 Python 导入模块的路径(和设置 PYTHONPATH 环境变量的作用相似)。也可使用路径分隔符(Windows 使用分号,Linux 使用冒号)来分隔多个路径 | | -n NAME,--name=NAME | 指定项目(产生的 spec)名字。如果省略该选项,那么第一个脚本的主文件名将作为 spec 的名字 |

演示
  1. 指定库文件地址为: C:\Users\test\OneDrive\文档\python\untitled\venv\Lib\site-packages
  2. 指定Python脚本文件为: C:\Users\test\Desktop\Chinasoft_Auto_Examination.py
  3. exe文件生成地址: C:\Users\test\dist\Chinasoft_Auto_Examination.exe
pyinstaller -F -w -p C:\Users\test\OneDrive\文档\python\untitled\venv\Lib\site-packages C:\Users\test\Desk
赞(0)
未经允许不得转载:工具盒子 » 通过pyinstaller将Python脚本转exe可执行文件