pyinstaller打包python项目

Published on Aug. 22, 2023, 12:10 p.m.

pyinstaller打包

文档

ohttps://pyinstaller.readthedocs.io/en/stable/
ohttps://www.cnblogs.com/caijunchao/p/12845620.html
安装

打包

pyinstaller run_mul.py –clean

o打包为一个

pyinstaller run_mul.py –clean –onefile

打包文件太大

第一种方法:将需要打包的程序和其所有依赖的包,统一放在pyinstaller的根目录下,直接用-F打包即可成功,少一个包都不行!
第二种方法:安装一个纯净的python环境,然后一步步测试pip,少哪个包就直接安装哪个。