Installation
Installation
There are three ways to install the clickup CLI.
Go
If you have Go 1.25 or later installed, use go install:
go install github.com/triptechtravel/clickup-cli/cmd/clickup@latestThis places the binary in your $GOBIN directory (typically $HOME/go/bin). Make sure that directory is in your PATH.
Homebrew
On macOS and Linux, install via Homebrew:
brew install triptechtravel/tap/clickupTo upgrade later:
brew upgrade triptechtravel/tap/clickupBinary releases
Download a prebuilt binary for your platform from the GitHub releases page.
- Download the archive for your OS and architecture.
- Extract it.
- Move the
clickupbinary to a directory in yourPATH(for example,/usr/local/bin).
# Example for macOS arm64tar xzf clickup_darwin_arm64.tar.gzsudo mv clickup /usr/local/bin/Verify the installation
After installing, confirm the CLI is available:
clickup versionThis prints the version, commit SHA, and build date.
Shell completions
Generate completion scripts for your shell to enable tab completion of commands and flags.
# Bashsource <(clickup completion bash)
# Zshsource <(clickup completion zsh)# Or install permanently:clickup completion zsh > "${fpath[1]}/_clickup"
# Fishclickup completion fish | source
# PowerShellclickup completion powershell | Out-String | Invoke-ExpressionDependencies
The link pr command requires the GitHub CLI (gh) to be installed and authenticated. Install it separately if you plan to link pull requests to ClickUp tasks.