摘要:
import tkinter as tkimport sys # 输出重定向类 class RedirectStdout: def __init__(self, text_widget): self.text_widget = text_widget def write(self, message) 阅读全文
摘要:
最前先提醒下,如果项目没有专门的环境,建议搞个虚拟环境打包,这样打包的exe会小点。 丢一段虚拟环境命令方便复制: 新建虚拟环境:conda create -n your_env_name python=3.8 激活虚拟环境:conda acitvate your_env_name 在这个环境里安装 阅读全文