sudo pacman -S b4 python-requestschmod +x patcher.sh
./patcher.shsudo pacman -S b4 python-requestschmod +x patcher.sh
./patcher.shaie2_check_protocol: Incompatible firmware protocol major 7 minor 2Hardware: HP ZBook Ultra G1a — AMD Ryzen AI MAX+ PRO 395 (Strix Halo)
NPU PCI ID: 1022:17f0 rev 11 (amdnpu/17f0_11/)
OS: CachyOS (Arch-based)
Kernel: 6.19.6-2-cachyos
Symptom: NPU fails to probe on every boot
Ignore this. Use my patch instead idovitz/amdisp4#3
| ## CLAUDE | |
| #export ANTHROPIC_BASE_URL="http://localhost:11434" | |
| #export ANTHROPIC_AUTH_TOKEN="ollama" | |
| # Launch Claude Code targeting your new Spark model | |
| #claude --model spark-coder | |
| #export ANTHROPIC_BASE_URL="http://192.168.1.229:11434" | |
| #export ANTHROPIC_AUTH_TOKEN="ollama" | |
| # Launch Claude Code targeting your new Spark model |
| FROM nvcr.io/nvidia/pytorch:25.10-py3 | |
| # Allow system-wide installs for the few things we need | |
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | |
| # Install only the system-level drivers for OpenCV | |
| RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 git ffmpeg && rm -rf /var/lib/apt/lists/* | |
| # Install only the missing AI libs. | |
| RUN python3 -m pip install --no-cache-dir \ |
| #!/bin/env python3 | |
| import leglight | |
| import click | |
| allLights = leglight.discover(2); | |
| light = allLights[0]; | |
| __author__ = "kinncj" | |
| @click.group() |