Download
TCA is a single binary which is available for Linux, MacOS and Windows. Follow the instructions below to download and install TCA on your system.
You will need to have a valid TIS account to download TCA.
Download and install TCA
- Linux
- MacOS
Use curl
or wget
to download the binary, grant permissions to execute and
place it somewhere in your $PATH
.
Replace amd64
with arm64
to download the arm64 binary.
Set environment variables:
export TIS_PASS=<tis-password>
export OS_ARCH=linux-amd64
export VERSION=v1.0.0
To use curl
:
mkdir -p ~/.tca/bin
curl -LO "https://dl.cloudsmith.io/$TIS_PASS/tetrate/tis-containers/raw/names/tca/versions/$OS_ARCH-$VERSION/tca.tar.gz"
tar -xvf tca.tar.gz -C ~/.tca/bin
export PATH=$PATH:~/.tca/bin
rm tca.tar.gz
Or with wget
:
mkdir -p ~/.tca/bin
wget -q "https://dl.cloudsmith.io/$TIS_PASS/tetrate/tis-containers/raw/names/tca/versions/$OS_ARCH-$VERSION/tca.tar.gz"
tar -xvf tca.tar.gz -C ~/.tca/bin
export PATH=$PATH:~/.tca/bin
rm tca.tar.gz
Use curl
or wget
to download the binary, grant permissions to execute and
place it somewhere in your $PATH
.
Replace darwin-arm64
with darwin-amd64
to download the arm64 binary.
Set environment variables:
export TIS_PASS=<tis-password>
export OS_ARCH=darwin-arm64
export VERSION=v1.0.0
To use curl
:
mkdir -p ~/.tca/bin
curl -LO "https://dl.cloudsmith.io/$TIS_PASS/tetrate/tis-containers/raw/names/tca/versions/$OS_ARCH-$VERSION/tca.tar.gz"
tar -xvf tca.tar.gz -C ~/.tca/bin
sudo xattr -r -d com.apple.quarantine ~/.tca/bin/tca
export PATH=$PATH:~/.tca/bin
rm tca.tar.gz
Or with wget
:
mkdir -p ~/.tca/bin
wget -q "https://dl.cloudsmith.io/$TIS_PASS/tetrate/tis-containers/raw/names/tca/versions/$OS_ARCH-$VERSION/tca.tar.gz"
tar -xvf tca.tar.gz -C ~/.tca/bin
sudo xattr -r -d com.apple.quarantine ~/.tca/bin/tca
export PATH=$PATH:~/.tca/bin
rm tca.tar.gz
Verify the installation
To verify the installation, run the following command:
tca
This command will display the help menu for the TCA CLI, outlining available commands and their descriptions. For detailed instructions on how to utilize the TCA CLI, please refer to the Usage Guide.