The Embeddable CLI can be installed in several ways depending on your platform and preferences.
# Add the Embeddable tap
brew tap embeddable-hq/embeddable
# Install the CLI
brew install embedUpdating:
brew update && brew upgrade embed# Add the Embeddable bucket
scoop bucket add embeddable https://github.com/embeddable-hq/scoop-bucket
# Install the CLI
scoop install embedUpdating:
scoop update embedDownload pre-built binaries for your platform from the GitHub releases page:
- macOS: Intel (x64) and Apple Silicon (ARM64)
- Linux: x64
- Windows: x64
- Download the appropriate binary for your platform
- Extract the archive (if applicable)
- Move the binary to a directory in your PATH
- Make it executable (Unix systems only):
chmod +x embed
- Node.js 18+
- pnpm
- Bun (for building native binaries)
# Clone the repository
git clone https://github.com/embeddable-hq/embeddable-cli.git
cd embeddable-cli
# Install dependencies
pnpm install
# Build TypeScript
pnpm build
# Run directly
node dist/cli.js --help
# Or build native binaries
pnpm build:allAfter installation, verify the CLI is working:
embed --version
embed --helpThe CLI will automatically check for updates and notify you when new versions are available. You can also manually check for updates:
embed version --checkFor Homebrew installations, you can update automatically:
embed version --updatebrew uninstall embed
brew untap embeddable-hq/embeddablescoop uninstall embedSimply remove the binary from your PATH.
To remove all CLI configuration and data:
rm -rf ~/.embeddableThis will remove:
- API credentials
- Configuration settings
- Cached data
See the Troubleshooting Guide for common installation issues and solutions.