> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/run-go-binaries-without-installing-go.md).

# Run Go Binaries Without Installing Go

We can run Go binaries without installing Go, by using [GoBinaries](https://gobinaries.com/) which allows Go programs to be installed from command line only.

## Example

```bash
curl -sf https://gobinaries.com/rakyll/hey | sh
```

### Limitations

* The package must compile within 100 seconds
* The package must have at least on tag

***Source:*** [***GoBinaries***](https://gobinaries.com/)
