tea/docs
Search
K
Links

tea & Terminals

Getting Started

Installing with brew is most straight forward:
brew install teaxyz/pkgs/tea-cli

Other Ways to Install

  1. 1.
    After brew our installer is easiest:
curl -fsS https://tea.xyz | sh
Wanna read that script before you run it? github.com/teaxyz/setup/installer.sh
  1. 2.
    tea is a standalone binary, so (if you want) you can just download it directly:
# download it to `./tea`
curl -o ./tea --compressed -f --proto '=https' https://tea.xyz/$(uname)/$(uname -m)
# install it to `/usr/local/bin/tea`
sudo install -m 755 tea /usr/local/bin
# check it works
tea --help
For your convenience we provide a .tgz so you can one-liner that:
curl -Ssf https://tea.xyz/$(uname)/$(uname -m).tgz | sudo tar xz -C /usr/local/bin
  1. 3.
    You can also download straight from GitHub Releases.
If you download manually you’ll need to move the binary somewhere in your PATH.
Last modified 15d ago