Without the Installer
tea
is a standalone binary and you can prove it:$ curl -Lo tea https://tea.xyz/$(uname)/$(uname -m)
$ chmod u+x ./tea
$ echo '# tea *really is* a standalone binary' | ./tea --sync glow -
tea: installing charm.sh/glow
# `tea --sync` updates pkgs, but you have to call it *at least once*
# our installer does this for you normally
tea
stows packages in ~/.tea
and thus the above will do that!Here’s a one-liner that downloads
tea
, makes it executable and puts it in /usr/local/bin
:sudo install -m 755 \
<(curl --compressed -LSsf https://tea.xyz/$(uname)/$(uname -m)) \
/usr/local/bin/tea
We love
brew
(tea
’s its spiritual successor) so you can use our tap:brew install teaxyz/pkgs/tea-cli
docker run --rm -it teaxyz/cli
Last modified 6d ago