赞
踩
pyinstaller加-w参数,打包程序运行报错
原因: 因为输出信息需要cmd窗口,-w后没有窗口,输出就报错了了。
解决: 取消输出就可以了 import sys, os 关闭print的输出 sys.stdout = open(os.devnull, ‘w’)