Installation
Requirements
| Requirement | Details |
|---|---|
| OS | macOS (Apple Silicon / Intel), Linux (x86_64 / arm64), Windows (x86_64) |
| Git | Required for pb skills new |
| Node.js | Optional. Required only for skills installed via npx |
| Network | Internet access to GitHub (for install and update) |
Install
bash
curl -fsSL https://get.phonebase.cloud | shbash
curl -fsSL https://get.phonebase.cloud | shbash
# Download from GitHub Releases:
# https://github.com/phonebase-cloud/phonebase-cli/releases
# Rename to pb.exe and add to PATHExpected output:
PhoneBase CLI Installer
───────────────────────
Version: v1.0.5
Platform: macos-arm64
Install to: /usr/local/bin
Downloading...
✓ Installed: /usr/local/bin/pb
Get started:
pb login # Login via browser
pb apikey <key> # Or set API Key
pb devices # List devicesManual Install
Download the binary from GitHub Releases, make it executable, and move to your PATH.
Available binaries:
phonebase-v{version}-macos-arm64— macOS Apple Silicon (M1/M2/M3/M4)phonebase-v{version}-macos-x64— macOS Intelphonebase-v{version}-linux-x64— Linux x86_64phonebase-v{version}-linux-arm64— Linux ARM64phonebase-v{version}-windows-x64.exe— Windows x86_64
bash
chmod +x phonebase-v*
sudo mv phonebase-v*-macos-arm64 /usr/local/bin/pbVerify
bash
pb --versionExpected output:
PhoneBase CLI 1.0.5Upgrade
bash
pb updateExpected output (when a new version is available):
Current version: 1.0.3
✓ Latest version: 1.0.5 (2026-04-09 3.2 MB macos-arm64)
Changelog:
...
Update? (Y/n) Y
Downloading phonebase-v1.0.5-macos-arm64...
Update successful! Current version: 1.0.5When already up to date:
Current version: 1.0.5
Current version: 1.0.5, already up to dateUninstall
bash
sudo rm $(which pb)
rm -rf ~/.phonebase/bash
# Delete pb.exe from your PATH directory
rmdir /s /q %USERPROFILE%\.phonebaseTroubleshooting
"command not found: pb"
The pb binary is not in your system PATH.
bash
# Check where pb was installed
which pb
# If not found, move it to a directory in your PATH
sudo mv ./pb /usr/local/bin/pbPermission denied
bash
chmod +x /usr/local/bin/pbOn macOS, if you see a security warning ("cannot be opened because the developer cannot be verified"):
bash
xattr -d com.apple.quarantine /usr/local/bin/pbProxy / Corporate Network
bash
export HTTP_PROXY=http://proxy.example.com:8080
export HTTPS_PROXY=http://proxy.example.com:8080