Installation

Requirements

A Linux distribution with the following programs installed:

Installation

As of version 4.0, ADE is distributed as a single, statically-linked binary for x86_64 and aarch64. Download the binary from the Releases page of the ade-cli project, and install it in PATH.

For information on how to install ADE (ade-cli, ADE base image, and ADE volumes) on an offline machine, see Offline Installation.

Update

To update ade-cli, run ade update-cli. If a newer version is available, ade will prompt for confirmation, download the new version, and replace itself.

Autocompletion

To enable autocompletion, add the following to your .zshrc or .bashrc:

if [ -n "$ZSH_VERSION" ]; then
    eval "$(_ADE_COMPLETE=source_zsh ade)"
else
    eval "$(_ADE_COMPLETE=source ade)"
fi

See Usage for next steps.