Skip to main content

Atym CLI Installation

This guide explains how to install the Atym CLI on different operating systems. You can choose between:

  • Stable release (recommended for most users)
  • Release Candidate (RC) (opt-in, for early testing)
tip

Stable releases are recommended for most users. Only use Release Candidates if you need early access to new features or want to help test upcoming releases.


Installing the CLI

The Atym CLI is available through platform-specific package managers for easy installation and updates.

  1. Add the APT repository:

    echo "deb [trusted=yes] http://apt.prod.atym.io stable main" | sudo tee /etc/apt/sources.list.d/atym.list
  2. Update package lists:

    sudo apt update
  3. Install Atym CLI:

    Stable version (recommended):

    sudo apt install atym

    Release Candidate (RC):

    sudo apt install atym-rc
  4. Verify installation:

    atym version

Upgrading the CLI

To update the Atym CLI to the latest version:

sudo apt update && sudo apt upgrade atym

Uninstalling the CLI

If you need to remove the Atym CLI:

sudo apt remove atym

To also remove the repository configuration:

sudo rm /etc/apt/sources.list.d/atym.list

Troubleshooting

Command Not Found

If you receive a "command not found" error after installation:

  1. Verify the package is installed:

    dpkg -l | grep atym
  2. Check if the binary is in your PATH:

    which atym
  3. If needed, restart your terminal session or source your shell configuration.

Permission Errors

If you encounter permission errors during installation, ensure you're using sudo:

sudo apt install atym

For additional help, contact support@atym.io.