-
Notifications
You must be signed in to change notification settings - Fork 18
Installation
Ben Basha edited this page Jul 15, 2025
·
2 revisions
This guide will walk you through installing Claude Autopilot on any platform.
Before installing Claude Autopilot, ensure you have the following:
-
VS Code 1.74.0 or later
- Download from code.visualstudio.com
-
Claude Code CLI
- Install from https://www.anthropic.com/claude-code
- Verify installation:
claude --version
-
Python 3.8 or later
- Download from python.org
- Verify installation:
python --versionorpython3 --version
-
Node.js 16.x or later (for development only)
- Download from nodejs.org
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X/Cmd+Shift+X) - Search for "Claude Autopilot"
- Click "Install" on the extension by Ben Basha
- Reload VS Code if prompted
code --install-extension benbasha.claude-autopilot- Download the latest
.vsixfile from Releases - Open VS Code
- Go to Extensions (
Ctrl+Shift+X/Cmd+Shift+X) - Click the "..." menu → "Install from VSIX"
- Select the downloaded
.vsixfile
# Using winget
winget install Python.Python.3.11
# Or download from python.org
# Make sure to check "Add Python to PATH" during installation# Follow the official Claude Code installation guide
# Ensure claude.exe is in your PATHpython --version
claude --version# Using Homebrew (recommended)
brew install python@3.11
# Or use the built-in Python 3
python3 --version# Follow the official Claude Code installation guide
# Ensure claude is in your PATHpython3 --version
claude --version# Python installation
sudo apt update
sudo apt install python3 python3-pip
# Claude Code installation
# Follow the official installation guide for your distribution# Python installation
sudo dnf install python3 python3-pip
# Claude Code installation
# Follow the official installation guide for your distributionpython3 --version
claude --versionAfter installation, Claude Autopilot will automatically check for dependencies:
- Open VS Code
- Run command:
Claude: Start Claude Autopilot - Check the dependency status in the Claude Autopilot panel
Access Claude Autopilot settings:
File → Preferences → Settings → Extensions → Claude Autopilot
Essential settings to review:
-
claudeLoop.session.skipPermissions: Enable for automation -
claudeLoop.sleepPrevention.enabled: Keep computer awake during processing -
claudeLoop.logging.enabled: Enable for troubleshooting
- Open a workspace in VS Code
- Run:
Claude: Start Claude Autopilot - Click "Add Message" and enter a simple test message
- Click "Start Processing" to verify everything works
Solution:
- Verify Claude Code is installed:
claude --version - Check if claude is in your PATH
- Restart VS Code after installing Claude Code
- On Windows, restart your terminal/PowerShell
Solution:
- Verify Python is installed:
python --versionorpython3 --version - Check if Python is in your PATH
- On Windows, ensure "Add Python to PATH" was checked during installation
- Restart VS Code after installing Python
Solution:
- Ensure VS Code has necessary permissions
- On macOS/Linux, check file permissions in your workspace
- Try running VS Code as administrator (Windows) or with sudo (Linux) temporarily
- Check the
claudeLoop.session.skipPermissionssetting
Solution:
- Check VS Code version compatibility (1.74.0+)
- Disable other Claude-related extensions temporarily
- Restart VS Code
- Check the VS Code Developer Console for errors
For more detailed troubleshooting, see:
For contributors and developers:
git clone https://github.com/benbasha/claudeloop.git
cd claudeloopnpm installnpm run compile- Open the project in VS Code
- Press
F5to launch Extension Development Host - Test your changes in the new VS Code window
# Install VSCE globally
npm install -g vsce
# Package extension
vsce packageVS Code automatically updates extensions by default.
- Go to Extensions in VS Code
- Find Claude Autopilot
- Click "Update" if available
git pull origin main
npm install
npm run compile- Go to Extensions (
Ctrl+Shift+X/Cmd+Shift+X) - Find Claude Autopilot
- Click "Uninstall"
code --uninstall-extension benbasha.claude-autopilotAfter successful installation:
- Read the Quick Start Guide
- Configure settings for your workflow
- Explore use cases for inspiration
- Join our community discussions
Installation guide last updated: July 2025