Skip to content

Commit

Permalink
Update installation instructions to use go install instead of go get (#…
Browse files Browse the repository at this point in the history
…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'.
```
  • Loading branch information
awalterschulze committed Oct 26, 2023
1 parent d7a49c4 commit 473989b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
- Thin [reactive-streams](http://www.reactive-streams.org/) implementation.
- Simulate Java SDK API.
- Fast CLI (Compatible with [https://github.com/rsocket/rsocket-cli](https://github.com/rsocket/rsocket-cli/)).
- Installation: `go get github.com/rsocket/rsocket-go/cmd/rsocket-cli`
- Installation: `go install github.com/rsocket/rsocket-go/cmd/rsocket-cli@latest`
- Example: `rsocket-cli --request -i hello_world --setup setup_me tcp://127.0.0.1:7878`

## Install

> Minimal go version is ***1.11***.
```shell
$ go get -u github.com/rsocket/rsocket-go
$ go install github.com/rsocket/rsocket-go/cmd/rsocket-cli@latest
```

## Quick Start
Expand Down

0 comments on commit 473989b

Please sign in to comment.