Download
TVS is a single binary which is available for Linux, MacOS and Windows. Follow the instructions below to download and install TVS on your system.
Download and install TVS
- Linux
- MacOS
- Windows
Use curl
or wget
to download the binary, grant permissions to execute and
place it somewhere in your $PATH
.
Replace linux-amd64-v1.0.0
with linux-arm64-v1.0.0
in the URL to download the arm64 binary.
To use curl
:
mkdir -p ~/.tvs/bin
curl -Lo ~/.tvs/bin/tvs "https://tis.tetrate.io/downloads?a=tvs&v=linux-amd64-v1.0.0"
chmod +x ~/.tvs/bin/tvs
export PATH=$PATH:~/.tvs/bin
Or with wget
:
mkdir -p ~/.tvs/bin
wget -q -O ~/.tvs/bin/tvs "https://tis.tetrate.io/downloads?a=tvs&v=linux-amd64-v1.0.0"
chmod +x ~/.tvs/bin/tvs
export PATH=$PATH:~/.tvs/bin
Use curl
or wget
to download the binary, grant permissions to execute and
place it somewhere in your $PATH
.
Replace darwin-amd64-v1.0.0
with darwin-arm64-v1.0.0
in the URL to download the arm64 binary.
To use curl
:
mkdir -p ~/.tvs/bin
curl -Lo ~/.tvs/bin/tvs "https://tis.tetrate.io/downloads?a=tvs&v=darwin-amd64-v1.0.0"
chmod +x ~/.tvs/bin/tvs
sudo xattr -r -d com.apple.quarantine ~/.tvs/bin/tvs
export PATH=$PATH:~/.tvs/bin
Or with wget
:
mkdir -p ~/.tvs/bin
wget -q -O ~/.tvs/bin/tvs "https://tis.tetrate.io/downloads?a=tvs&v=darwin-amd64-v1.0.0"
chmod +x ~/.tvs/bin/tvs
sudo xattr -r -d com.apple.quarantine ~/.tvs/bin/tvs
export PATH=$PATH:~/.tvs/bin
Download the tvs.exe
binary to a directory under Program Files
. You might
need to run the following commands from an elevated PowerShell prompt.
Replace windows-amd64-v1.0.0
with windows-arm64-v1.0.0
in the URL to download the arm64 binary.
mkdir "%USERPROFILE%\\tvs"
mkdir "%USERPROFILE%\\tvs\\bin"
Invoke-WebRequest -Uri "https://tis.tetrate.io/downloads?a=tvs.exe&n=tvs&v=windows-amd64-v1.0.0" -OutFile "%USERPROFILE%\\tvs\\bin\\tvs.exe"
You will need to add the %USERPROFILE%\tvs\bin
path to the system environment
variable %PATH%
.
Verify the installation
To verify the installation, run the following command:
tvs
This command will display the help menu for the TVS CLI, outlining available commands and their descriptions. For detailed instructions on how to utilize the TVS CLI, please refer to the Usage Guide.