Desktop Install
PilotDeck provides a native macOS desktop app based on Electron. The current build supports Apple Silicon (arm64).
Standard Install
- 1Download and open the DMG
Go to the PilotDeck v0.0.9 Release page, download the Apple Silicon DMG file, then double-click the downloaded file.
- 2Move it into Applications
Drag
PilotDeck.appinto theApplicationsfolder. - 3Launch
Open PilotDeck from Launchpad or Finder.
Fix for DMG Files Received Through IM Apps
If you received the DMG file through sandboxed IM apps such as Feishu, WeChat, or QQ, macOS 14 (Sonoma) and later may reject the app because of the com.apple.provenance extended attribute, even when the code signature and notarization are valid.
Option 1: Run the Fix Script
bash install-pilotdeck.sh
The script will:
- Find the installed
PilotDeck.app - Clear macOS quarantine/provenance extended attributes
- Verify code signing and Apple notarization
Option 2: Fix Manually
# Clear extended attributes
xattr -cr /Applications/PilotDeck.app
# Launch again
open /Applications/PilotDeck.app
Technical background: macOS Sonoma introduced the com.apple.provenance extended attribute. Files downloaded by sandboxed apps such as Feishu or WeChat may be marked with this attribute, causing Gatekeeper to apply stricter policy checks. xattr -cr is safe here: Apple's notarization ticket is stored in Contents/CodeResources, not in extended attributes.
Configuration
After the desktop app starts, it launches the embedded PilotDeck Gateway service. The config path is the same as the Web version:
~/.pilotdeck/pilotdeck.yaml
On first launch, the app guides you through API key setup. For details, see Config File Reference.