У нас вы можете посмотреть бесплатно Using Claude Code With Ollama and GLM-4.7-Flash on Mac OS или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
TL;DW; 1. Install Claude 2. Update or download `glm-4.7-flash:latest` LLM 3. Adjust ~/.zshrc file 4. Relaunch Terminal 5. Run `ollama launch claude` from directory to claude in Today we get Claude installed on a Mac and point it to Ollama to run glm-4.7-flash, a 30B parameter LLM with good test scores. Then we let it try to write a script to analyze a file with known Duplicates as reported by DupeGuru. By the end, we do get an analysis file, but it needs more adjusting than Claude Code - GLM 4.7 Flash thought it did when it said it was ready. This is a great first step though! 0:00 Introduction 0:58 Using `ollama ls` command to see available LLMs 1:32 Installation Options 2:08 Usage with Ollama 2:40 `Claude Not Installed` - Restarting Terminal 3:24 Trying to Install Claude Again 4:07 Editing `~/.zshrc` file with VSCodium 5:20 Using `ollama launch claude` from new Terminal Window 7:05 Trying `claude` command directly unsuccessfully 7:46 `Weight format not supported` running `ollama pull glm-4.7-flash:latest` 8:30 Trying to get `claude` to work unsuccessfully again 10:10 Success with `ollama launch claude` 10:58 Using Plan Mode 11:57 Letting Claude Plan 12:30 Clarifying Claude's Questions 13:30 Clarifying My Intent to Myself 14:25 Reviewing Answers 15:25 Letting Claude Refine the Plan 16:04 Monitoring System Resources 16:50 Reviewing the Plan 17:44 Asking for More Changes 18:36 New Plan 19:05 Adding Explicit Constraint to Plan 19:40 Skimming Latest Plan 20:24 Copying Plan to File for Easy Reference 20:58 Accepting Plan 22:20 Handing Claude the Wheel 23:47 Skimming Claude's Script as it Progresses 24:30 Viewing Initial Analysis Result File 24:45 Viewing GLM-4.7-Flash Ollama Page 25:42 Claude Thought it was Done 27:15 Burdening My Eyes with Human Verification 27:41 Manual Debugging 28:46 Wrapping Up References: https://docs.ollama.com/integrations/... https://code.claude.com/docs/en/setup Quick setup ``` ollama launch claude ``` Edit ~/.zshrc ``` codium ~/.zshrc ``` Add these lines ``` export ANTHROPIC_AUTH_TOKEN=ollama export ANTHROPIC_API_KEY="" export ANTHROPIC_BASE_URL=http://localhost:11434 ``` Install Claude-Code ``` curl -fsSL https://claude.ai/install.sh | bash If not already in local path Cannot add Angle brackets in Youtube Description, so this is not exactly right. Replace the vertical bars with Greater Than Signs echo 'export PATH="$HOME/.local/bin:$PATH"' || ~/.zshrc && source ~/.zshrc ``` Run Claude Code in DupeRemoval folder and ask it to plan Dupe Removal based on the csv contents. ``` cd ~/workspace/_scratch/DupeRemoval claude --model gpt-oss:20b claude --model glm-4.7-flash:latest claude --model nemotron-3-nano:latest claude --model qwen3-coder:30b ``` #claudecode #macos #scripting #bash #glm-4.7-flash