Installing the Thalassa Cloud CLI (tcloud)
The Thalassa Cloud CLI (tcloud
) helps you manage your Thalassa Cloud resources from the command line. This guide shows you how to install it.
Prerequisites
- macOS, Linux, or Windows
- For Homebrew installation: macOS with Homebrew installed
- For binary installation: curl or wget
Installation Methods
Using Homebrew (Recommended for macOS)
Add the Thalassa Cloud tap:
brew tap thalassa-cloud/tap
Install tcloud:
brew install tcloud
Using Binary Installation
- Visit the GitHub releases page
- Download the binary for your operating system and architecture
- Make the binary executable:
chmod +x tcloud
- Move the binary to a directory in your PATH:
sudo mv tcloud /usr/local/bin/
Verify Installation
Run this command to check if tcloud is installed correctly:
tcloud version
Next Steps
After installation, you need to authenticate with Thalassa Cloud:
tcloud context create --api=https://api.thalassa.cloud --token=<your-token>
Replace <your-token>
with your personal access token from Thalassa Cloud.
Troubleshooting
If you see “command not found” after installation:
- Make sure the binary is in your PATH
- Try restarting your terminal
- For Homebrew installations, run
brew doctor
to check for issues
For more help, visit our GitHub repository.