github.com/grafana/tanka@v0.26.1-0.20240506093700-c22cfc35c21a/docs/src/components/install/tk/binary.mdx (about) 1 --- 2 hidden: true 3 --- 4 5 For all other operating systems, we provide pre-compiled binaries for Tanka at 6 [GitHub Releases](https://github.com/grafana/tanka/releases). 7 8 Just grab the latest version from there, download it and put somewhere in your 9 `$PATH` (e.g. to `/usr/local/bin/tk`) 10 11 #### Linux, macOS 12 13 For Linux and macOS, download the binary for your architecture, put it somewhere on your `$PATH`, and make it an executable: 14 15 ```bash 16 # Linux amd64: 17 sudo curl -Lo /usr/local/bin/tk https://github.com/grafana/tanka/releases/latest/download/tk-linux-amd64 18 sudo chmod a+x /usr/local/bin/tk 19 20 # Linux arm / arm64 (e.g. RaspberryPi): 21 sudo curl -Lo /usr/local/bin/tk https://github.com/grafana/tanka/releases/latest/download/tk-linux-arm 22 sudo curl -Lo /usr/local/bin/tk https://github.com/grafana/tanka/releases/latest/download/tk-linux-arm64 23 sudo chmod a+x /usr/local/bin/tk 24 25 # macOS: 26 sudo curl -Lo /usr/local/bin/tk https://github.com/grafana/tanka/releases/latest/download/tk-darwin-amd64 27 sudo chmod a+x /usr/local/bin/tk 28 ```