笔记笔记
  • Home
  • AI&ML
  • Example
  • Zoo
  • 关于
⌘ K
Light mode
简介
Ollama
ZeroClaw
OpenClaw
Claude Code
RAGFlow
Stable Diffusion
ComfyUI
PyTorch
Paddle
关注的模型
关注的组织
目标检测
研究
YOLO
其他
文档技巧
最后更新时间:
Copyright © 2023-2026 | Powered by dumi | GuoDapeng | 冀ICP备20004032号-2 | 冀公网安备 冀公网安备13020302001452号

TABLE OF CONTENTS

‌
‌
‌
‌

ZeroClaw

WARNING

不会用……智能体不记事……

  • GitHub - ZeroClaw

安装

在 Fedora Linux 43 (Workstation Edition) Linux 6.18.12-200.fc43.aarch64 虚拟机里测试。

安装 zsh。

shell
sudo yum install -y zsh
export https_proxy=http://192.168.30.202:7897 http_proxy=http://192.168.30.202:7890 all_proxy=socks5://192.168.30.202:7897
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# 配置主题
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="fino-time"/' ~/.zshrc
shell
git clone https://github.com/zeroclaw-labs/zeroclaw.git
cd zeroclaw
./bootstrap.sh

我选择的过程:

shell
Use default workspace location? yes
> 🏠 Local / private (Ollama, llama.cpp server, vLLM — no API key needed)
> Ollama — local models (Llama, Mistral, Phi)
Use a remote Ollama endpoint (for example Ollama Cloud)? yes
Remote Ollama endpoint URL: http://192.168.30.202:11434
Enter custom model ID: qwen3:32b
> Done — finish setup
> Skip — local only (default)
> Sovereign (local only) — you manage API keys, full privacy (default)
› ZeroClaw can encrypt API keys stored in config.toml.
› A local key file protects against plaintext exposure and accidental leaks.
Enable encrypted secret storage? no
> ☁️ Software Only — no hardware access (default)
> SQLite with Vector Search (recommended) — fast, hybrid search, embeddings
Auto-save conversations to memory? yes
Your name [User]: Guo Dapeng
Enter timezone (e.g. America/New_York) [UTC]: Asia/Hong_Kong
> Direct & concise — skip pleasantries, get to the point

后面的步骤需要新建一个终端,要不找不到 zeroclaw 命令。

凭着感觉走,能选默认选默认,先跑起来再说。

使用

执行 zeroclaw gateway 就会输出访问 Web 控制台的方法信息。

vi .zeroclaw/config.toml 删除 paired_tokens 字段数组里面的字符串,即可重新获得 one-time code。

检查环境

shell
# 查看本机 IP
ip addr show
# 检查 ssh 是否可用
sudo systemctl status sshd
sudo systemctl start sshd
sudo systemctl enable sshd
# 端口转发;用来临时在外面访问,避免一直暴露。
ssh -L 42617:127.0.0.1:42617 fedora@192.168.30.35
Preview
Preview
Preview
Preview
Preview
Preview
Preview