Skip to content

Commit 473989b

Browse files
Update installation instructions to use go install instead of go get (#131)
go get no longer works and gives the error: ``` % go get github.com/rsocket/rsocket-go go: go.mod file not found in current directory or any parent directory. 'go get' is no longer supported outside a module. To build and install a command, use 'go install' with a version, like 'go install example.com/cmd@latest' For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go help install'. ```
1 parent d7a49c4 commit 473989b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
- Thin [reactive-streams](http://www.reactive-streams.org/) implementation.
1616
- Simulate Java SDK API.
1717
- Fast CLI (Compatible with [https://github.com/rsocket/rsocket-cli](https://github.com/rsocket/rsocket-cli/)).
18-
- Installation: `go get github.com/rsocket/rsocket-go/cmd/rsocket-cli`
18+
- Installation: `go install github.com/rsocket/rsocket-go/cmd/rsocket-cli@latest`
1919
- Example: `rsocket-cli --request -i hello_world --setup setup_me tcp://127.0.0.1:7878`
2020

2121
## Install
2222

2323
> Minimal go version is ***1.11***.
2424
2525
```shell
26-
$ go get -u github.com/rsocket/rsocket-go
26+
$ go install github.com/rsocket/rsocket-go/cmd/rsocket-cli@latest
2727
```
2828

2929
## Quick Start

0 commit comments

Comments
 (0)