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.
- Linux
- macOS
- Windows
-
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 -
Update package lists:
sudo apt update -
Install Atymctl:
sudo apt install atymctl -
Verify installation:
atymctl version
-
Add the Atymctl Homebrew tap:
brew tap atym-io/homebrew-repo -
Install Atymctl:
brew install atymctl -
Verify installation:
atymctl version
-
Configure Chocolatey source:
choco source add -n=atymctl -s="https://choco.prod.atym.io/chocolatey" --priority=1 -
Install Atymctl:
choco install atymctl -
Verify installation:
atymctl version
Upgrading the CLI
To update the Atymctl to the latest version:
- Linux
- macOS
- Windows
sudo apt update && sudo apt upgrade atymctl
brew upgrade atymctl
choco upgrade atymctl
Uninstalling the CLI
If you need to remove the Atymctl:
- Linux
- macOS
- Windows
sudo apt remove atymctl
To also remove the repository configuration:
sudo rm /etc/apt/sources.list.d/atymctl.list
brew uninstall atymctl
To also remove the tap:
brew untap atym-io/homebrew-repo
choco uninstall atymctl
To also remove the source:
choco source remove -n=atymctl
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 atymctl -
Check if the binary is in your PATH:
which atymctl -
If needed, restart your terminal session or source your shell configuration.
-
Verify the package is installed:
brew list | grep atymctl -
Check if the binary is in your PATH:
which atymctl -
If needed, restart your terminal session or run:
source ~/.zshrc # or ~/.bash_profile
-
Verify the package is installed:
choco list --local-only atymctl -
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 atymctl
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.