Installation

There are several ways to install talhelper to your workstation.

Using aqua

You can get talhelper from the standard registry as budimanjojo/talhelper.

Using asdf

You can get talhelper with a plugin maintained by @bjw-s.

  • Add the plugin

    asdf plugin add talhelper
    
  • Install the program

    asdf install talhelper latest
    

Using Homebrew

You can get talhelper from the official formulae (thanks to @ishioni).

brew install talhelper

Using Nix Flakes

You can get talhelper as Nix Flakes from the repository.

  • Add the repository as input in your flake.nix file

    {
      inputs = {
        talhelper.url = "github:budimanjojo/talhelper";
      }
    }
    
  • The package is now available at packages.<system>.default of the flake. You can call it in your home.packages or environment.systemPackages or devShell by referencing the input as inputs.talhelper.packages.<system>.default.

Using Pacman

Thanks to grawlinson, you can get talhelper from official Arch Linux "Extra" repository.

sudo pacman -S talhelper

Using AUR

You can get talhelper from AUR using any AUR helper if you're Arch Linux user btw.

Example using yay:

yay -S talhelper-bin

Using Scoop

You can get talhelper from Scoop if you're a Windows user (thanks to @dedene).

scoop bucket add budimanjojo https://github.com/budimanjojo/talhelper.git
scoop install talhelper

Using one liner with jpillora

You can get talhelper using this one liner using tool provided by jpillora.

curl https://i.jpillora.com/budimanjojo/talhelper! | sudo bash

From the release page

If none of the above works for you, you can download the archived binary for your system from the latest release page.

Please let me know if you want to help with adding new installation method by creating a new issue.