Python
RenGarZero
RenGar
展开
-
VSCode配置ESP-IDF
多个版本的python,如果使用,pip 安装指定python版本即可原创 2023-11-15 22:33:52 · 424 阅读 · 0 评论 -
Pyside2在子线程中发射信号,主线程中做出响应
class UI_Combin_Docx(QThread): messbox_text = Signal(str, str) clear_text = Signal() def __init__(self): super().__init__() self.doc = conbin_Docx() # 存储选择的单个文件路径 self.Single_filePath = list() # 实例化.原创 2021-03-11 22:05:55 · 680 阅读 · 2 评论 -
Pyinstaller打包Python源文件
近期使用Tkinter做了一个GUI小项目,银行管理系统,期望打包成exe点击即可使用,使用pyinstaller进行打包,查询相关资料后总结如下:官网参考文档:https://pyinstaller.readthedocs.io/en/latest/执行:pyinstaller [options] SourceCode命令时,pyinstaller会分析并解析源码中各个模块和库项目...原创 2020-05-05 20:51:50 · 815 阅读 · 0 评论