← Back to list

pyinstaller生成exe

Published on: | Views: 264

前言

要打包exe,需要在window操作系统下进行

安装python

https://www.python.org/downloads/ 下载后,双击安装, 完成后需要手动设置环境变量, 在PATH中添加(根据实际位置设置):

C:\Users\IEUser\AppData\Local\Programs\Python\Python310
C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Scripts

设置python使用阿里云镜像地址

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

安装需要的包

pip freeze > requirePackage.txt
pip install -r requirePackage.txt

打包

pyinstaller -w -F init.py --clean -y -n xxx.exe

遇到的问题 WARNING: lib not found

1687 WARNING: lib not found: Qt6Pdf.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\lib\site-packages\PySide6\plugins\imageformats\qpdf.dll
2389 WARNING: lib not found: api-ms-win-shcore-scaling-l1-1-1.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\lib\site-packages\PySide6\plugins\platforms\qdirect2d.dll
2515 WARNING: lib not found: api-ms-win-shcore-scaling-l1-1-1.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\lib\site-packages\PySide6\plugins\platforms\qwindows.dll
2842 WARNING: lib not found: MSVCP140_2.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\lib\site-packages\PySide6\QtGui.pyd
3374 WARNING: lib not found: MSVCP140_2.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Lib\site-packages\PySide6\Qt6Gui.dll
3389 WARNING: lib not found: MSVCP140_1.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Lib\site-packages\PySide6\Qt6Gui.dll
3451 WARNING: lib not found: MSVCP140_1.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Lib\site-packages\PySide6\Qt6Core.dll
3561 WARNING: lib not found: MSVCP140_1.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Lib\site-packages\PySide6\Qt6Widgets.dll
3826 WARNING: lib not found: MSVCP140_2.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Lib\site-packages\PySide6\Qt6Quick.dll
3858 WARNING: lib not found: MSVCP140_1.dll dependency of C:\Users\IEUser\AppData\Local\Programs\Python\Python310\Lib\site-packages\PySide6\Qt6Quick.dll

Microsoft Visual C++ Redistributable latest supported downloads 下载对应的版本安装就可以了。