From 81a289595e53129c5bdafb2fd0b3db70a901ad6b Mon Sep 17 00:00:00 2001 From: Matt Stofko Date: Wed, 16 Sep 2020 21:57:06 -0700 Subject: [PATCH] Updating install instructions --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ca6a545..497767a 100644 --- a/README.md +++ b/README.md @@ -38,14 +38,15 @@ simple, which helps keep it performant and reduces the chance of errors. Installation --- -To install bitagent, use the standard `go install` process. -[Go 1.11+](https://golang.org/) is required due to the use of Go modules. +To install bitagent, the quickest way is to use the standard `go get` process: ```bash -git clone https://github.com/mjslabs/bitagent.git && cd bitagent -go install +go get github.com/mjslabs/bitagent ``` +This will install the binary into your `$GOBIN` directory (defaults to ~/go/bin). +You may need to ensure that the `GO111MODULE=on` environment variable is set. + Usage ---