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)
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.
- Linux
- macOS
- Windows
-
Add the APT repository:
echo "deb [trusted=yes] http://apt.prod.atym.io stable main" | sudo tee /etc/apt/sources.list.d/atym.list -
Update package lists:
sudo apt update -
Install Atym CLI:
Stable version (recommended):
sudo apt install atymRelease Candidate (RC):
sudo apt install atym-rc -
Verify installation:
atym version
-
Add the Atym Homebrew tap:
brew tap atym-io/homebrew-repo -
Install Atym CLI:
Stable version (recommended):
brew install atymRelease Candidate (RC):
brew install atym-rc -
Verify installation:
atym version
-
Configure Chocolatey source:
choco source add -n=atym -s="https://choco.prod.atym.io/chocolatey" --priority=1 -
Install Atym CLI:
Stable version (recommended):
choco install atymRelease Candidate (RC):
choco install atym --pre -
Verify installation:
atym version
Upgrading the CLI
To update the Atym CLI to the latest version:
- Linux
- macOS
- Windows
sudo apt update && sudo apt upgrade atym
brew upgrade atym
choco upgrade atym
Uninstalling the CLI
If you need to remove the Atym CLI:
- Linux
- macOS
- Windows
sudo apt remove atym
To also remove the repository configuration:
sudo rm /etc/apt/sources.list.d/atym.list
brew uninstall atym
To also remove the tap:
brew untap atym-io/homebrew-repo
choco uninstall atym
To also remove the source:
choco source remove -n=atym
Troubleshooting
Command Not Found
If you receive a "command not found" error after installation:
- Linux
- macOS
- Windows
-
Verify the package is installed:
dpkg -l | grep atym -
Check if the binary is in your PATH:
which atym -
If needed, restart your terminal session or source your shell configuration.
-
Verify the package is installed:
brew list | grep atym -
Check if the binary is in your PATH:
which atym -
If needed, restart your terminal session or run:
source ~/.zshrc # or ~/.bash_profile
-
Verify the package is installed:
choco list --local-only atym -
Try restarting your PowerShell or Command Prompt window
-
If the issue persists, check your system PATH environment variable includes the Chocolatey bin directory (usually
C:\ProgramData\chocolatey\bin)
Permission Errors
- Linux
- macOS
- Windows
If you encounter permission errors during installation, ensure you're using sudo:
sudo apt install atym
Homebrew installations should not require sudo. If you encounter permission issues:
-
Check Homebrew's permissions:
brew doctor -
Follow any recommendations provided
Ensure you're running PowerShell or Command Prompt as Administrator:
- Right-click on PowerShell/Command Prompt
- Select "Run as Administrator"
- Run the installation command again
For additional help, contact support@atym.io.