Last updated May 23, 2025

Install on Linux

Each CLI version will only be supported 6 months after release. We recommend regularly updating to the latest CLI version to benefit from new features and improvements.

Install using package management

Use package management to install, update, and remove software packages by using either of the following methods:

Debian-based distributions

Open a terminal window and enter the command below to install:

  1. Download required dependencies:
1
2
sudo apt-get install -y wget gnupg2
  1. Setup APT Repository:
1
2
sudo mkdir -p -m 755 /etc/apt/keyrings
wget -nv -O- https://acli.atlassian.com/gpg/public-key.asc | sudo gpg --dearmor -o /etc/apt/keyrings/acli-archive-keyring.gpg
sudo chmod go+r /etc/apt/keyrings/acli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/acli-archive-keyring.gpg] https://acli.atlassian.com/linux/deb stable main" | sudo tee /etc/apt/sources.list.d/acli.list > /dev/null
  1. Install ACLI:
1
2
sudo apt update
sudo apt install -y acli

Red Hat-based distributions

Open a terminal window and enter the command below to install:

  1. Download required dependencies:
1
2
sudo yum install -y yum-utils
  1. Setup YUM repository:
1
2
sudo yum-config-manager --add-repo https://acli.atlassian.com/linux/rpm/acli.repo
  1. Install ACLI:
1
2
sudo yum install -y acli

Install binary with curl on Linux

Open a terminal window and enter the command below to install:

  1. Download the latest release:

ARM64

1
2
curl -LO "https://acli.atlassian.com/linux/latest/acli_linux_arm64/acli"

x86-64

1
2
curl -LO "https://acli.atlassian.com/linux/latest/acli_linux_amd64/acli"
  1. Make the acli binary executable:
1
2
chmod +x ./acli

You can now use acli from this directory:

1
2
./acli --help
  1. Install acli binary (requires root access):
1
2
sudo install -o root -g root -m 0755 acli /usr/local/bin/acli

If you do not have root access on the target system, you can still install acli to the ~/.local/bin directory:

1
2
mkdir -p ~/.local/bin
mv ./acli ~/.local/bin/acli
# and then append (or prepend) ~/.local/bin to $PATH

You can now use acli globally:

1
2
acli --help

Rate this page: