Installation
This guide will walk you through installing PATAPIM on your system.
Prerequisites
Before installing PATAPIM, ensure you have the following:
- Windows 10 or later (64-bit) or macOS 12+ (Intel or Apple Silicon)
- Node.js 18 or higher — Download from nodejs.org
- Git — Download from git-scm.com
- An AI CLI — At least one of the following installed and authenticated:
- Claude Code —
npm install -g @anthropic-ai/claude-code - Codex —
npm install -g @openai/codex - Gemini CLI —
npm install -g @google/gemini-cli
- Claude Code —
Windows Installation
Method 1: Install Script (Recommended)
CMD:
curl -fsSL https://raw.githubusercontent.com/G3dar/patapim-releases/main/install.cmd -o "%TEMP%\patapim-install.cmd" && "%TEMP%\patapim-install.cmd"
PowerShell:
irm https://raw.githubusercontent.com/G3dar/patapim-releases/main/install.ps1 | iex
Method 2: Download Installer
- Visit the PATAPIM download page
- Click Download Installer (.exe)
- Run the installer and follow the prompts
- Launch PATAPIM from your applications menu or desktop shortcut
macOS Installation
Method 1: Install Script (Recommended)
Open Terminal and run:
curl -fsSL https://raw.githubusercontent.com/G3dar/patapim-releases/main/install-mac.sh | bash
This automatically detects your Mac’s architecture (Apple Silicon or Intel) and installs the correct version.
Method 2: Download DMG
- Visit the PATAPIM download page
- Click Download for Apple Silicon (M1/M2/M3/M4) or Download for Intel (older Macs)
- Open the downloaded
.dmgfile - Drag PATAPIM to your Applications folder
- Launch PATAPIM from Applications or Launchpad
Note: On first launch, macOS may show a security warning. Right-click PATAPIM and select “Open” to bypass Gatekeeper, or go to System Settings > Privacy & Security and click “Open Anyway”.
macOS Prerequisites
Ensure Xcode Command Line Tools are installed:
xcode-select --install
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+Ton Windows,Cmd+Shift+Ton macOS) - Run a simple command like
node --versionto verify the terminal works - Test AI CLI integration by pressing
Ctrl+K/Cmd+Kand typing a question
If you see a response from your AI CLI, your installation is complete.
Troubleshooting
PATAPIM won’t start
- Ensure Node.js 18+ is installed:
node --version - Windows: Try running as administrator
- macOS: Check System Settings > Privacy & Security for blocked apps
- Check that your antivirus isn’t blocking the application
AI CLI not responding
- Verify your CLI is installed (e.g.
claude --versionorcodex --version) - Check that you’re authenticated with the CLI
- Ensure you have an active internet connection
Terminal not working
- Windows: Ensure you have a shell available (PowerShell, Git Bash, or WSL)
- macOS: The default shell (zsh) should work out of the box
- Check Settings to verify the correct shell path is configured
Next Steps
Now that PATAPIM is installed, head over to the Quick Start Guide to learn how to use it.