上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 58 下一页
摘要: 在 CentOS 7 上使用 pip 安装 Python 包时出现证书验证错误: $ pip install tensorboard Looking in indexes: https://pypi.mirrors.ustc.edu.cn/simple WARNING: Retrying (Retr 阅读全文
posted @ 2025-04-06 22:37 Undefined443 阅读(374) 评论(1) 推荐(0)
摘要: 从 mpfr.org 下载源码: wget https://www.mpfr.org/mpfr-current/mpfr-4.2.2.tar.xz tar -Jxf mpfr-*.tar.xz 编译并安装: ./configure make -j$(nproc) sudo make install 阅读全文
posted @ 2025-04-04 06:30 Undefined443 阅读(50) 评论(0) 推荐(0)
摘要: 参见:KVM Network Configuration | Oracle Docs Prerequisite 检查 CPU 虚拟化支持: egrep -c '(vmx|svm)' /proc/cpuinfo # 计算虚拟处理器 VMX 或 SVM 的引用数 输出不为 0 即可。 安装依赖: sud 阅读全文
posted @ 2025-04-04 03:30 Undefined443 阅读(509) 评论(0) 推荐(0)
摘要: launchd 是 macOS 的系统启动和服务管理工具,相当于 Linux 的 systemd。 文件路径: ~/Library/LaunchAgents:仅适用于登录用户的第三方代理 /Library/LaunchAgents:基于每个用户且所有用户适用的第三方代理 /Library/Launc 阅读全文
posted @ 2025-04-02 15:00 Undefined443 阅读(90) 评论(0) 推荐(0)
摘要: During handling of the above exception, another exception occurred 产生原因:处理异常时,except 块中的代码抛出新的异常。 示例代码: try: 1 / 0 # 这里抛出 ZeroDivisionError except Zer 阅读全文
posted @ 2025-03-31 14:35 Undefined443 阅读(290) 评论(0) 推荐(0)
摘要: 系统:Ubuntu 22.04 报错: $ clang++ main.cpp read.cpp:1:10: fatal error: 'fstream' file not found #include <fstream> ^~~~~~~~~ 1 error generated. 错误原因:系统安装了 阅读全文
posted @ 2025-03-27 22:53 Undefined443 阅读(269) 评论(0) 推荐(0)
摘要: 指数加权平均 指数加权平均(Exponentially Weighted Averages,EWA) ,也叫做指数移动平均(Exponentially Moving Averages,EMA) 是一种用于平滑时间序列数据的技术,通过对数据点赋予不同的权重来计算平均值,其中最近的数据点被赋予更大的权重 阅读全文
posted @ 2025-03-23 16:22 Undefined443 阅读(14) 评论(0) 推荐(0)
摘要: 创建一个 .pre-commit-config.yaml 文件: repos: - repo: https://github.com/psf/black rev: '22.8.0' hooks: - id: black args: - --line-length=120 - repo: https: 阅读全文
posted @ 2025-03-15 07:37 Undefined443 阅读(15) 评论(0) 推荐(0)
摘要: 根据 RFC 1918 定义,以下网段被保留用于私有网络: A 类私有地址段:10.0.0.0/8(10.0.0.0 到 10.255.255.255) B 类私有地址段:172.16.0.0/12(172.16.0.0 到 172.31.255.255) C 类私有地址段:192.168.0.0/ 阅读全文
posted @ 2025-03-14 12:57 Undefined443 阅读(28) 评论(0) 推荐(0)
摘要: astral-sh/uv 安装 macOS brew install uv Linux curl -LsSf https://astral.sh/uv/install.sh | sh 安装命令补全 echo 'eval "$(uv generate-shell-completion bash)"' 阅读全文
posted @ 2025-03-14 04:20 Undefined443 阅读(373) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 58 下一页