Python - Pyinstaller
Posted Sch01aR#
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python - Pyinstaller相关的知识,希望对你有一定的参考价值。
安装 Pyinstaller
pip install pyinstaller
使用:
test.py
print("Hello World!")
命令行输入 pyinstaller test.py
生成以下文件
build 文件夹下的文件
dist 文件夹下的文件
在 dist 文件夹下的 test 文件夹下运行 test.exe
Pyinstaller 相关选项:
-D, --no-dir 打包成一个文件夹,默认
-p DIR, --path DIR 添加路径,一般用来添加程序所用到的包的位置
-c, --console, --nowindowed 无视窗,程序后台运行
-w, --windowed, --noconsole 提供程序视窗,程序没有命令行输出,默认
-i <FILE.ico or FILE.exe,ID or FIEL.icns>
--icon <FILE.ico or FILE.exe,ID or FIEL.icns> 添加 icon 图标
以上是关于Python - Pyinstaller的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu下使用pyinstaller将python文件打包成exe(py文件中含有keras框架的代码)
使用PyInstaller构建Cython编译的python代码。
Python - 使用Pyinstaller将Python代码生成可执行文件
如何在win7 64位系统下用pyinstaller打包python代码成exe