placemy.cloud
Download

placemy v1.0.0

One-line install on every platform. Native single-file binaries are built fresh on every release — no Python required. Python users can still install via pipx if they prefer.

macOS (Apple Silicon or Intel)

macOS (Apple Silicon or Intel)
# Install (auto-detects Apple Silicon or Intel)
ARCH=$(uname -m); [ "$ARCH" = "arm64" ] && ASSET=placemy-macos-arm64 || ASSET=placemy-macos-x86_64
curl -fsSL https://placemy.cloud/install/$ASSET -o /usr/local/bin/placemy
chmod +x /usr/local/bin/placemy
xattr -d com.apple.quarantine /usr/local/bin/placemy   # first run only

# Activate your licence
placemy auth login --key PM-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

# Run your first scan
placemy scan --output report.html
Other platforms

Linux (x86_64)

Linux (x86_64)
# Install (x86_64 binary, no Python required)
curl -fsSL https://placemy.cloud/install/placemy-linux-x86_64 -o ~/.local/bin/placemy
chmod +x ~/.local/bin/placemy

# Activate your licence
placemy auth login --key PM-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

# Run your first scan
placemy scan --output report.html

Windows (x86_64)

Windows (x86_64)
# Install (PowerShell, x86_64 binary)
Invoke-WebRequest -Uri "https://placemy.cloud/install/placemy-windows-x86_64.exe" -OutFile "$env:USERPROFILE\bin\placemy.exe"

# Activate your licence
placemy auth login --key PM-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX

# Run your first scan
placemy scan --output report.html

pipx (any OS with Python 3.11+)

pipx
# Install via pipx (Python 3.11+)
pipx install placemy

# Activate and scan
placemy auth login --key PM-XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
placemy scan --output report.html

All binaries

Every release publishes a single-file binary per platform. Use these links for air-gapped installs or to pin to a specific tag.

PlatformFileSize
macosplacemy-macos-arm6460.6 MBDownload
linuxplacemy-linux-x86_6488.2 MBDownload
windowsplacemy-windows-x86_64.exe67.1 MBDownload
wheelplacemy-1.0.0-py3-none-any.whl0.1 MBDownload
wheelplacemy-1.0.0.tar.gz0.4 MBDownload

The macOS binary is currently unsigned — macOS 14+ requiresxattr -d com.apple.quarantineon first run (already included in the install snippet above). Signing is tracked as a Wave 2 item.