pyqt5 nuitka 打包 记录

牛爱特卡nuitka
win7 64位系统

参考网页

Python打包exe的王炸-Nuitka
https://zhuanlan.zhihu.com/p/133303836

pyqt5 nuitka 打包 记录_第1张图片
pyqt5 nuitka 打包 记录_第2张图片
设置环境变量
path
C:\mingw64\bin

4.安装 Nuitka

pip install nuitka

或者安装最新版本(根据使用经验发现新版本修复问题多,兼容性更好)

pip install -U “https://github.com/Nuitka/Nuitka/archive/develop.zip”

需要在一个 干净的 环境中

不要有 python 多版本,不要python 虚拟环境等等.
在一个win7 64位的干净环境中 ,设置了python 和 mingw的环境变量.
可以编译成功,编译后的 不是一个 exe ,而是 exe 和他依赖的库的 ,
也就是 pyinstaller -D的那种效果.
把代码给别人 也是 需要把文件夹给别人

win7 下 不需要安装 powercmd.exe

你可能感兴趣的:(pyqt)