上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 58 下一页
摘要: scatter scatter 定义: tgt.scatter(dim, idx, src) # 将 tgt 中的部分数据点用 src 替换 dim 参数指定 idx 应用的位置: tgt[idx[i, j], j] = src[i, j] # dim = 0 tgt[i, idx[i, j]] = 阅读全文
posted @ 2025-05-17 18:42 Undefined443 阅读(24) 评论(0) 推荐(0)
摘要: manylinux 是一种用于构建 Python 项目二进制发行包的标准,旨在确保这些包能够在众多的 Linux 发行版上兼容运行。 manylinux 由 Python 社区维护,并随着时间的发展推出了多个版本,如 manylinux1、manylinux2010、manylinux2014 和 阅读全文
posted @ 2025-05-17 15:36 Undefined443 阅读(320) 评论(0) 推荐(0)
摘要: 项目结构 packaging_tutorial/ ├── LICENSE ├── pyproject.toml ├── README.md ├── src/ │ └── sampleproject/ │ ├── __init__.py │ └── example.py └── tests/ src 阅读全文
posted @ 2025-05-16 20:37 Undefined443 阅读(28) 评论(0) 推荐(0)
摘要: 编写一个简单的 Python 程序: import time def sum(n): total = 0 for i in range(1, n+1): total += i return total if __name__ == "__main__": start = time.time() re 阅读全文
posted @ 2025-05-16 19:09 Undefined443 阅读(24) 评论(0) 推荐(0)
摘要: 未完待续 安装 在 GitHub 或者 maddy.email 下载最新 release。 wget https://maddy.email/builds/0.8.1/maddy-0.8.1-x86_64-linux-musl.tar.zst tar --zstd -xf maddy-*.tar.z 阅读全文
posted @ 2025-05-16 03:58 Undefined443 阅读(228) 评论(0) 推荐(0)
摘要: iCloud 自定义电子邮件域是苹果提供的电子邮件托管服务。iCloud+ 用户可免费使用。 获取一个托管在 Cloudflare 的域名。 打开自定义电子邮件域设置,选择“使用你拥有的域”。 根据使用方式选择域类型,并添加域名: 授权 iCloud 为域名添加 DNS 记录: 稍等片刻,你就能使用 阅读全文
posted @ 2025-05-16 00:18 Undefined443 阅读(50) 评论(0) 推荐(0)
摘要: 创建 PPA 注册 Ubuntu One 帐号。 在 Launchpad 上传 GPG 公钥。 解密你收到的邮件,并打开其中的验证链接: pbpaste | gpg -d 签名行为准则: wget -O UbuntuCodeofConduct-2.0.txt https://launchpad.ne 阅读全文
posted @ 2025-05-12 23:57 Undefined443 阅读(53) 评论(0) 推荐(0)
摘要: ⁠gettext 是一个用于国际化(i18n)和本地化(l10n)的工具,主要用于管理软件中的文本翻译。 项目结构: myapp ├── src │ └── main.c ├── po │ ├── myapp.pot # 翻译模板 │ ├── en_US.po # 翻译文件 │ ├── zh_CN. 阅读全文
posted @ 2025-05-09 14:07 Undefined443 阅读(175) 评论(0) 推荐(0)
摘要: Traceback (most recent call last): File "main.py", line 6, in <module> import GPUtil File "/lib/python3.13/site-packages/GPUtil/__init__.py", line 33, 阅读全文
posted @ 2025-05-07 19:39 Undefined443 阅读(1217) 评论(0) 推荐(0)
摘要: YouTube 知名教学博主 3Blue1Brown 的系列视频《Essence of linear algebra》的学习笔记 阅读全文
posted @ 2025-05-03 22:45 Undefined443 阅读(73) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 58 下一页