Installation

Install Devly CLI with Homebrew and start using 50+ developer tools from your terminal in seconds.

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:

Terminal
brew install aarush67/tap/devlycli

This command does two things:

  • Adds the aarush67/tap tap to your Homebrew
  • Installs the devlycli formula
Don't have Homebrew?

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:

Terminal
# 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=
Installation successful!

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:

Terminal
brew upgrade devlycli

Uninstalling

If you need to remove Devly CLI:

Terminal
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:

~/.zshrc
export PATH="/opt/homebrew/bin:$PATH"

Then reload your shell: source ~/.zshrc

Permission denied

If you encounter permission issues, try fixing Homebrew permissions:

Terminal
sudo chown -R $(whoami) /opt/homebrew

Tap not found

If the tap fails to add, you can add it explicitly first:

Terminal
brew tap aarush67/tap
brew install devlycli