python的pyinstaller
1、pyinstaller --onefile -w *.py 可以生成可执行文件
-w就是不需要有console窗体出现、
2、 console窗体会出现一些警告。
比如
Warning: QT_DEVICE_PIXEL_RATIO is deprecated. Instead use:
QT_AUTO_SCREEN_SCALE_FACTOR to enable platform plugin controlled per-screen factors.
QT_SCREEN_SCALE_FACTORS to set per-screen DPI.
QT_SCALE_FACTOR to set the application global scale factor.
这个好像是qt5会出现的,用qt6就不会了。
3、比如:
libpng warning: iCCP: cHRM chunk does not match sRGB
这个警告居然是用了“qq输入法”的原因,切换到其他输入法就不会了。
4.结束。。。