> 文档中心 > pyinstaller打包exe

pyinstaller打包exe

目录

pyinstaller安装

pyinstaller语法解析:

pyinstaller命令demo:


pyinstaller安装

pip install pyinstaller

pyinstaller语法解析:

pyinstaller -F -p 路径 -i ico路径 mian.py  –noconsole

-D:打包成多个文件

-F:打包成1个文件

-p:指定python安装包路径

-i:指定图标放在同目录下

mian.py:要打包的文件,和图标放在同目录下了

 –noconsole:不显示cmd运行框

pyinstaller命令demo:

我这里都是采用的绝对路径

pyinstaller -F -p D:\save\Exe\studys\Python\exe\Lib -i D:\save\myclass\mingming\csdn.ico toLong.py –noconsole

图标文件与py文件都放在一个文件夹里面,使用命令后会生成两个文件夹,【build】与【dist】建议使用-F,因为在dist中生成的文件只有一个exe直接点击使用即可。 

直接点开使用即可。

我这里是一个短连接转长连接的示例。

https://download.csdn.net/download/feng8403000/86731988 

这个是打包好的内容,直接使用即可。 

这个方法不支持有多线程的项目,多线程的需要单独下载新的包来支持。但是一般小的python项目还是都好用的。