diff --git a/README.md b/README.md index c8db5f9..8392253 100644 --- a/README.md +++ b/README.md @@ -46,13 +46,29 @@ It connects directly to Streamlit's binary WebSocket engine (`/_stcore/stream`) ## Installation and build -Clone or navigate to the repository, then build the binary: +### Using `go install` + +Install the binary directly to `$GOPATH/bin` (or `~/go/bin`): + +```bash +go install code.luxferre.top/luxferre/groqqer@latest +``` + +Make sure `$GOPATH/bin` is in your `PATH`. + +### Building from source + +Clone or navigate to the repository, then compile the binary: ```bash make ``` -The optimized binary will be created at `bin/groqqer`. +The optimized binary will be created at `bin/groqqer`. Alternatively, install into `$GOPATH/bin` from the local directory: + +```bash +go install . +``` ## Running the server