上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 27 下一页
摘要: 不得不说 py的GUI实在是太难上手了 我现在突然很怀念MFC VB c#这些东西了 因为控件的代码你只要一点就能进入查看 而pyqt5 pyside2 都不可以 你要看就看全部的代码 你要改你也只能转换成py文件再改 你却得不到实时的反馈和交互 我也不知道我改了这段代码跑出来会怎么样 跑了之后又开 阅读全文
posted @ 2020-10-21 15:40 然终酒肆 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-21 13:36 然终酒肆 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 逛了逛国外论坛 这哥们跟我一样 我一晚上没睡 就为了这个 原来 我的py版本太高级了 我把py3.9卸载了 换上了老旧的3.76版本 成功了 阅读全文
posted @ 2020-10-21 00:52 然终酒肆 阅读(3547) 评论(0) 推荐(1) 编辑
摘要: 用国内快速的镜像源即可 pip install PyQt5 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 阅读全文
posted @ 2020-10-20 22:46 然终酒肆 阅读(2213) 评论(1) 推荐(1) 编辑
摘要: cmd 输入 pip install PySide2 官方下载太慢 清华源: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyside2 亲测报错 怎么办? 豆瓣镜像: pip install pyside2 -i https:// 阅读全文
posted @ 2020-10-20 20:59 然终酒肆 阅读(1343) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/JEsoloH/article/details/84677005?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.edu_weigh 阅读全文
posted @ 2020-10-18 18:18 然终酒肆 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 是由于缺少了fm20.dll这个必要组件 网上找到 然后在工程中引用 找到路径 完美解决 阅读全文
posted @ 2020-10-17 23:58 然终酒肆 阅读(757) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zxl2016/article/details/96482763 阅读全文
posted @ 2020-10-10 15:57 然终酒肆 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 用哈希表实现的 https://blog.csdn.net/dream_you_to_life/article/details/46785741 阅读全文
posted @ 2020-10-10 15:48 然终酒肆 阅读(51) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define MAXSIZE 1000 typedef struct Linklist { char data; struct Linklist *lchild,*rchild; }Node; Linklis 阅读全文
posted @ 2020-10-10 15:32 然终酒肆 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 27 下一页