Install or Update rpk

The rpk tool is a single binary application that provides a way to interact with your Redpanda clusters from the command line. For example, you can use rpk to do the following:

  • Monitor your cluster’s health

  • Create, produce, and consume from topics

  • Set up access control lists (ACLs) and other security features

Redpanda Cloud deployments should always use the latest version of rpk.

Check rpk version

To check your current version of the rpk binary, run rpk --version.

The following example lists the latest version of rpk. If your installed version is lower than this latest version, then update rpk. For a list of versions, see Redpanda releases.

rpk --version
rpk version 24.3.1 (rev 7d40744)

Install or update rpk on Linux

To install, or update to, the latest version of rpk for Linux, run:

  • amd64

  • arm64

curl -LO https://github.com/redpanda-data/redpanda/releases/latest/download/rpk-linux-amd64.zip &&
  mkdir -p ~/.local/bin &&
  export PATH="~/.local/bin:$PATH" &&
  unzip rpk-linux-amd64.zip -d ~/.local/bin/
curl -LO https://github.com/redpanda-data/redpanda/releases/latest/download/rpk-linux-arm64.zip &&
  mkdir -p ~/.local/bin &&
  export PATH="~/.local/bin:$PATH" &&
  unzip rpk-linux-amd64.zip -d ~/.local/bin/

Install or update rpk on macOS

  • Homebrew

  • Manual Download

  1. If you don’t have Homebrew installed, install it.

  2. To install or update rpk, run:

    brew install redpanda-data/tap/redpanda
    This method installs the latest version of rpk, which is supported only with the latest version of Redpanda.

To install or update rpk through a manual download, choose the option for your system architecture. For example, if you have an M1 or newer chip, select Apple Silicon.

  • Intel macOS

  • Apple Silicon

To install, or update to, the latest version of rpk for Intel macOS, run:

curl -LO https://github.com/redpanda-data/redpanda/releases/latest/download/rpk-darwin-amd64.zip &&
  mkdir -p ~/.local/bin &&
  export PATH="~/.local/bin:$PATH" &&
  unzip rpk-darwin-amd64.zip -d ~/.local/bin/

To install, or update to, a version other than the latest, run:

curl -LO https://github.com/redpanda-data/redpanda/releases/download/v<version>/rpk-darwin-amd64.zip &&
  mkdir -p ~/.local/bin &&
  export PATH="~/.local/bin:$PATH" &&
  unzip rpk-darwin-amd64.zip -d ~/.local/bin/

To install, or update to, the latest version of rpk for Apple Silicon, run:

curl -LO https://github.com/redpanda-data/redpanda/releases/latest/download/rpk-darwin-arm64.zip &&
  mkdir -p ~/.local/bin &&
  export PATH="~/.local/bin:$PATH" &&
  unzip rpk-darwin-arm64.zip -d ~/.local/bin/

To install, or update to, a version other than the latest, run:

curl -LO https://github.com/redpanda-data/redpanda/releases/download/v<version>/rpk-darwin-arm64.zip &&
  mkdir -p ~/.local/bin &&
  export PATH="~/.local/bin:$PATH" &&
  unzip rpk-darwin-arm64.zip -d ~/.local/bin/

Next steps

For a list of rpk commands and their syntax, see the rpk reference.