Skip to main content

Atymctl Installation

This guide explains how to install the Atymctl on different operating systems.


Installing the Atymctl

The Atymctl 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/atymctl stable main" | sudo tee /etc/apt/sources.list.d/atymctl.list
  2. Update package lists:

    sudo apt update
  3. Install Atymctl:

    sudo apt install atymctl
  4. Verify installation:

    atymctl version

Upgrading the CLI

To update the Atymctl to the latest version:

sudo apt update && sudo apt upgrade atymctl

Uninstalling the CLI

If you need to remove the Atymctl:

sudo apt remove atymctl

To also remove the repository configuration:

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

Troubleshooting

Command Not Found

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

  1. Verify the package is installed:

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

    which atymctl
  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 atymctl

For additional help, contact support@atym.io.