Installation
This guide will walk you through installing PATAPIM on your system.
Prerequisites
Before installing PATAPIM, ensure you have the following installed:
- Node.js 18 or higher - Download from nodejs.org
- Git - Download from git-scm.com
- Claude Code CLI - Install and authenticate with Anthropic
Installing Claude Code CLI
If you haven’t already installed the Claude Code CLI:
npm install -g @anthropic-ai/claude-code
Authenticate with your Anthropic API key:
claude
Installation Methods
Method 1: Download Installer (Recommended)
- Visit the PATAPIM releases page
- Download the installer for your platform:
- Windows:
PATAPIM-Setup-x.x.x.exe - macOS:
PATAPIM-x.x.x.dmg - Linux:
PATAPIM-x.x.x.AppImage
- Windows:
- Run the installer and follow the prompts
- Launch PATAPIM from your applications menu
Method 2: Install from Source
Clone the repository and install dependencies:
git clone https://github.com/G3dar/patapim.git
cd patapim
npm install
Start PATAPIM:
npm start
Method 3: Install Script (Quick Setup)
Run a single command to download and install PATAPIM:
Windows (PowerShell):
irm https://raw.githubusercontent.com/G3dar/patapim-releases/main/install.ps1 | iex
macOS/Linux:
curl -fsSL https://raw.githubusercontent.com/G3dar/patapim-releases/main/install.sh | bash
The install script handles downloading, extracting, and setting up PATAPIM automatically.
Verifying Installation
After installation, verify PATAPIM is working correctly:
- Launch PATAPIM
- You should see the main window with the sidebar and terminal area
- Open a new terminal (Ctrl+Shift+T or Cmd+Shift+T)
- Run a simple command like
pwdto verify the terminal works - Test Claude Code integration by pressing Ctrl+K (or Cmd+K) and typing a question
If you see the Claude Code response, your installation is complete.
Troubleshooting
PATAPIM won’t start
- Ensure Node.js 18+ is installed:
node --version - Check that all dependencies are installed:
npm install - Try running with debug mode:
PATAPIM_DEBUG=1 npm start
Claude Code not responding
- Verify Claude Code CLI is installed:
claude --version - Check authentication:
claude - Ensure you have an active internet connection
Terminal not working
- On Windows, ensure you have a shell installed (PowerShell, Git Bash, or WSL)
- On macOS/Linux, verify your default shell is configured:
echo $SHELL
Next Steps
Now that PATAPIM is installed, head over to the Quick Start Guide to learn how to use it.