2019年10月22日

py2exe 和pyinstaller打包

摘要: 两种方式:一 .py2exe (最好是在win7下面python2下去打包) 1.安装【Python3】 直接pip install py2exe,如果报ssl错误就pip install openpyxl -i http://pypi.douban.com/simple/ --trusted-ho 阅读全文

posted @ 2019-10-22 13:50 骑着蜗牛追太阳 阅读(2366) 评论(0) 推荐(0) 编辑

wxpython 学习之 --threading

摘要: 为了避免程序运行时,什么都干不了,甚至连移动窗口或者关闭的简单动作都会卡死,因此需要采用多线程。 class Mythread(threading.Thread): def __init__(self,window): super(Mythread,self).__init__() self.win 阅读全文

posted @ 2019-10-22 09:49 骑着蜗牛追太阳 阅读(468) 评论(0) 推荐(0) 编辑

导航