Last updated Mar 31, 2025

Install on Linux

Install binary with curl on Linux

  1. Download the latest release.

ARM64

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

x86-64

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

You can now use acli from this directory.

1 ./acli --help
  1. Install acli binary (requires root access).
1 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

Install using package management

Debian-based distributions

  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

  1. Download required dependency
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

Rate this page: