10 2023 档案

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