What You'll Have at the End
A fully set up development system with Python 3.8+, Git for version control, and a terminal that can run all project commands.
Step 1: Install Python
python3 --version (macOS/Linux) or python --version (Windows)macOS:
brew install python3 or installer from python.orgLinux:
sudo apt install python3 (Ubuntu/Debian)python3 --version again. You should see Python 3.8 or higher.Step 2: Install Git
git version 2.34.1
# If not installed:
# Windows: https://git-scm.com/download/win
# macOS: brew install git
# Linux: sudo apt install git
Step 3: Download the Project
$ cd ~/Documents
# Clone the repository
$ git clone https://github.com/instructkr/claw-code.git
Cloning into 'claw-code'...
# Change into the project directory
$ cd claw-code
# Verify the structure
$ ls
src/ tests/ assets/ README.md ANLEITUNG.md
python instead of python3 on Windows"Permission denied" โ Run terminal as Administrator
"git: command not found" โ Git is not in PATH โ restart or update PATH