上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: Linux下cannot open shared object file解决 问题描述 跑程序时,显示错误如下: ImportError: libmkl_intel_lp64.so: cannot open shared object file: No such file or directory 阅读全文
posted @ 2024-03-05 22:07 3的4次方 阅读(2152) 评论(0) 推荐(0)
摘要: 提高C++编译速度 Build Performance Insights - Crascit 如何分析和提高大型项目(C/C++)的编译速度? - 知乎 (zhihu.com) 以上链接提供了提高编译速度的方案,以及如何检查是编译哪个文件花的时间最长。 实践下来,我采用的方案是直接换用 ninja 阅读全文
posted @ 2024-03-04 20:03 3的4次方 阅读(111) 评论(0) 推荐(0)
摘要: Python日志logging模块 logging Python 的日志记录工具 — Python 3.12.2 文档 Python logging模块的基本使用、进阶使用详解_python中logging模块详解-CSDN博客 logging模块架构 日志级别 默认的级别是 “WARNING“,意 阅读全文
posted @ 2024-03-02 09:14 3的4次方 阅读(111) 评论(0) 推荐(0)
摘要: Linux下systemd服务配置 systemctl命令 systemctl start 服务名 开启服务 systemctl stop 服务名 关闭服务 systemctl status 服务名 显示状态 systemctl restart 服务名 重启服务 systemctl enable 服 阅读全文
posted @ 2024-02-21 09:31 3的4次方 阅读(515) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2024-02-20 18:28 3的4次方 阅读(0) 评论(0) 推荐(0)
摘要: Qt元对象相关错误 无法解析的外部符号 xxx QMetaObject const * __cdecl xxx::metaObject(void)const “ (?metaObject@xxx@@ 意思是Qt的元对象系统不认识你的 xxx 类型。 那么有2种排查方向: 检查对应的函数实现有没有链到 阅读全文
posted @ 2024-02-20 09:29 3的4次方 阅读(1327) 评论(0) 推荐(0)
摘要: UOS下切换Wayland 图形化修改方法 1、下载配置策略工具 sudo apt install dde-dconfig-editor 2、进入配置工具,在 greeter 配置中开启 wayland 切换配置项: dde-dconfig-editor 直接改配置文件法 修改/usr/share/ 阅读全文
posted @ 2024-02-19 18:29 3的4次方 阅读(1648) 评论(0) 推荐(0)
摘要: Qt FluentUI 框架 项目地址:zhuzichu520/FluentUI (github.com) 安装 编译 直接用 Qt Creator 打开工程,编译运行 example 即可。 根据 CMakeLists.txt 可以看出,编译好了后会自动在 <Qt_SDK_DIR>/<Qt_Ver 阅读全文
posted @ 2024-02-15 23:36 3的4次方 阅读(2507) 评论(0) 推荐(0)
摘要: C++11 用户定义字面量 C++11引入了一项功能,称为用户自定义字面量(user-defined literals),它允许程序员定义自己的字面量后缀,以扩展现有的字面量语法。 内置字面量 C++ 自带4种字面量: 整形 123 浮点型 12.3 字符 '1' 字符串 "123" 字面量又可添加 阅读全文
posted @ 2024-02-10 20:24 3的4次方 阅读(313) 评论(0) 推荐(0)
摘要: 配置Git免密提交 https://docs.gitcode.com/docs/help/home/user_center/security_management/ssh/ 第一步 配置git使用的username和email,该信息将会在git提交记录中显示 git config --global 阅读全文
posted @ 2024-02-02 19:07 3的4次方 阅读(97) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页