机器:MACmini ,14+20核,48G
1、brew install node
2、npm install -g @anthropic-ai/claude-code@latest
3、安装好Claude Code 后,直接在终端输入 claude ,有可能会触发如下错误提示:
Unable to connect to Anthropic services
Failed to connect to api.anthropic.com: ERR_BAD_REQUEST
Please check your internet connection and network settings.
Note: Claude Code might not be available in your country. Check supported countries at https://anthropic.com/supported-countries
错误的核心原因就是:区域限制,无法直接使用Claude Code,需要设置某些参数。
解决办法在 ~/.claude.json 文件添加如下配置,"hasCompletedOnboarding": true 然后重启Claude Code。
4、安装ollama:curl -fsSL https://ollama.com/install.sh | sh
5、下载ollama模型:ollama launch claude 选qwen3.6
6、设置参数
export ANTHROPIC_AUTH_TOKEN=ollama
export ANTHROPIC_API_KEY=""
export ANTHROPIC_BASE_URL=http://localhost:11434
7、启动 claude --model qwen3.6(qwen3.6:latest(36B 参数))