Skip to content

00-安装软件

📅 2026/06/07·📝 0 字·⏱ 少于 1 分钟

Claude code安装


  • 魔法
  • Node.js
  • Git
  • CC Switch
  • Claude code
  • cc.bat
  • Obsidian+Claude 插件
  • WorkBuddy
  • IDM
  • idm 激活
  • 桌面去剪头
  • 右键菜单恢复

Obsidian安装


  1. Obsidian
  2. 插件
https://github.com/YishenTu/claudian

报错直接让Claude code解决

Obsidian中使用Claude

Claude code我的终端使用正常, 但在Obsidian的插件中Claudian对话异常,帮我修复下,我的Obsidian插件Claudian我注意到没有claudian-settings.json

报错如下

常用网址


https://github.1zyq1.com/ 加速 https://github.com/2dust/v2rayN/releases v2rayN
https://github.com/farion1231/cc-switch/releases CC Switch https://nodejs.org/en/download/ Node.js https://git-scm.com/install/windows git https://obsidian.md/zh/download Obsidian https://www.codebuddy.cn/ide/ CodeBuddy IDE https://www.742112.xyz/ 小箭头 右键集成优化

Claude code安装命令 https://www.dqtx.cc/posts/aihacks/claude-code-安装/

npm install -g @anthropic-ai/claude-code

Claude code在命令行启动命令

正常启动命令

Claude

YOLO 模式「全自动执行」

claude --dangerously-skip-permissions

建议直接在桌面创建一个cc.bat

一键启动bat

@echo off
title Claude Code
where claude >nul 2>&1 || (echo Claude Code 未安装 & pause & exit /b 1)
claude --dangerously-skip-permissions

一行命令创建

echo @echo off>%userprofile%\Desktop\cc.bat&&echo title Claude Code>>%userprofile%\Desktop\cc.bat&&echo where claude ^>nul 2^>^&1 ^|^| (echo Claude Code 未安装 ^& pause ^& exit /b 1)>>%userprofile%\Desktop\cc.bat&&echo claude --dangerously-skip-permissions>>%userprofile%\Desktop\cc.bat

启动异常修改~/.claude.json

  "hasCompletedOnboarding": true

📎 📒 返回笔记索引

Released under the MIT License.