上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 58 下一页
摘要: main.c: #include <stdio.h> #include <unistd.h> int main() { int fd[2]; // 创建管道 if (pipe(fd) == -1) { fprintf(stderr, "pipe(fd) failed\n"); return -1; 阅读全文
posted @ 2025-03-13 04:34 Undefined443 阅读(7) 评论(0) 推荐(0)
摘要: tasks.json tasks.json 用于设置构建指令。 Python { "version": "2.0.0", "tasks": [ { "label": "main", "type": "shell", "command": "python", "args": [ "main.py", 阅读全文
posted @ 2025-03-12 01:28 Undefined443 阅读(102) 评论(0) 推荐(0)
摘要: pip freeze | cut -d "=" -f 1 | xargs -n 1 pip uninstall -y 阅读全文
posted @ 2025-03-11 23:26 Undefined443 阅读(26) 评论(0) 推荐(0)
摘要: 在使用 pip 卸载 Python 包时出现如下错误: pip uninstall xkit Found existing installation: xkit 0.0.0 Not uninstalling xkit at /usr/lib/python3/dist-packages, outsid 阅读全文
posted @ 2025-03-10 21:27 Undefined443 阅读(160) 评论(0) 推荐(0)
摘要: PyTest 是一个流行的 Python 测试框架,简单易用且功能强大,适用于单元测试和功能测试。 安装 pip install pytest 编写测试代码 PyTest 会自动发现以 test_ 开头的函数或以 Test 开头的类方法。所以,你需要按照这种命名约定来编写测试。 示例: 目录布局: 阅读全文
posted @ 2025-03-09 17:43 Undefined443 阅读(51) 评论(0) 推荐(0)
摘要: 单元文件类型: .service:定义系统服务 .socket:定义套接字激活服务 .device:定义硬件设备 .mount 和 .automount:定义文件系统的挂载点 .timer:定义类似 cron 的定时任务 .target:将一组服务和其他单元逻辑地组合在一起,以达到某种系统状态(类似 阅读全文
posted @ 2025-03-07 21:45 Undefined443 阅读(50) 评论(0) 推荐(0)
摘要: 编译并使用动态链接库 创建共享库源文件 math.c: int add(int a, int b) { return a + b; } 创建共享库头文件 math.h: int add(int a, int b); 编译动态链接库: gcc -shared -fPIC math.c -o libma 阅读全文
posted @ 2025-03-05 02:54 Undefined443 阅读(20) 评论(0) 推荐(0)
摘要: 问题描述 我有 3 块显卡: + + | NVIDIA-SMI 550.127.08 Driver Version: 550.127.08 CUDA Version: 12.4 | | + + + | GPU Name Persistence-M | Bus-Id Disp.A | Volatile 阅读全文
posted @ 2025-03-01 21:48 Undefined443 阅读(177) 评论(0) 推荐(0)
摘要: history 对于 Zsh 用户,可以使用 fc 命令来搜索历史记录,它是 history 命令的增强版本: fc -l 1 这里 -l 选项表示列出历史条目,1 是从历史记录的第一条命令开始搜索。 最后,如果你在 Zsh 中启用了增强的历史搜索功能,也可以直接通过按下特定的快捷键(如 Ctrl 阅读全文
posted @ 2025-03-01 21:02 Undefined443 阅读(87) 评论(0) 推荐(0)
摘要: 格式: echo -e "\033[控制代码m输出文本" \033[控制代码m 是转义序列,其中 \033[ 是转义起始符,m 是转义终止符。 \033 对应 ASCII 码表的 ESC,可以用 \e 或 \E 代替。 控制代码是一系列由 ; 分隔的数字。 文本样式控制代码: 0:清除所有样式 1: 阅读全文
posted @ 2025-03-01 21:00 Undefined443 阅读(39) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 58 下一页