Installation

This guide will walk you through installing PATAPIM on your system.

Prerequisites

Before installing PATAPIM, ensure you have the following installed:

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

  1. Visit the PATAPIM releases page
  2. 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
  3. Run the installer and follow the prompts
  4. 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:

  1. Launch PATAPIM
  2. You should see the main window with the sidebar and terminal area
  3. Open a new terminal (Ctrl+Shift+T or Cmd+Shift+T)
  4. Run a simple command like pwd to verify the terminal works
  5. 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.