python 生成 exe

本文由 简悦 SimpRead 转码, 原文地址 m.php.cn

python 生成 exe 文件的方法:首先安装 pyinstaller,代码为【pip install pyinstaller】;然后使用 pyinstaller 命令打包成 exe【pyinstaller -F --icon=my.ico…】。

python 生成 exe 文件的方法:

一、安装 pyinstaller

  pip install pyinstaller

二、使用 pyinstaller 命令

pyinstaller -F main.py #打包成 exe

pyinstaller -F --icon=my.ico test.py #打包成 exe,并设置图标

pyinstaller -F -w yourfilename.py #打包成 exe, 且不包含控制台

其他参数:

python 生成 exe_第1张图片

一般 python GUI 编程才用到 打包成 exe,讲道理不如. net 的 winform 好使

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