System Requirements
| Requirement | Minimum |
|---|---|
| Operating System | macOS 13 (Ventura) or later |
| Processor | Apple Silicon (M1/M2/M3/M4) or Intel |
| Package Manager | Homebrew |
Install with Homebrew
Devly CLI is distributed via a custom Homebrew tap. Install it with a single command:
brew install aarush67/tap/devlycli
This command does two things:
- Adds the
aarush67/taptap to your Homebrew - Installs the
devlycliformula
Install it first by running: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Verify Installation
After installation, verify that Devly CLI is working correctly:
# Check the version devly --version # Output: devlycli 2.0.0 # List all available tools devly --list # Try a quick test devly base64 "Hello World" # Output: SGVsbG8gV29ybGQ=
If you see the encoded output, Devly CLI is ready to use. Run devly --help to see all available options.
Updating
Keep Devly CLI up to date with the latest features and bug fixes:
brew upgrade devlycli
Uninstalling
If you need to remove Devly CLI:
brew uninstall devlycli
Troubleshooting
Command not found
If you get a "command not found" error after installation, make sure Homebrew's bin directory is in your PATH. Add this to your ~/.zshrc or ~/.bash_profile:
export PATH="/opt/homebrew/bin:$PATH"
Then reload your shell: source ~/.zshrc
Permission denied
If you encounter permission issues, try fixing Homebrew permissions:
sudo chown -R $(whoami) /opt/homebrew
Tap not found
If the tap fails to add, you can add it explicitly first:
brew tap aarush67/tap brew install devlycli