github.com/grafana/tanka@v0.26.1-0.20240506093700-c22cfc35c21a/docs/src/components/install/tk/go.mdx (about) 1 --- 2 hidden: true 3 --- 4 5 If you happen to have a local [Go](https://golang.org) toolchain, you can also build Tanka from source using `go install`: 6 7 ```bash 8 $ cd /tmp 9 $ go install github.com/grafana/tanka/cmd/tk@latest 10 ``` 11 12 If that does not work for whatever reason (Go modules, etc), clone and compile manually: 13 14 ```bash 15 $ git clone https://github.com/grafana/tanka 16 $ cd tanka 17 $ make install 18 ```