From a42d6f550b598644dbd3f6de4a930f6c666ee54e Mon Sep 17 00:00:00 2001 From: Selion05 Date: Sat, 16 Jul 2022 13:51:45 +0200 Subject: [PATCH] Add install command for go >= 1.17 go get outside of a module was deprecated at 1.17 and doesn't work on 1.18 anymore --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 711377a..4057a9a 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,11 @@ Note for Mac OS users, the CLI requires libusb to be installed: `brew install li You can also compile and install Wally using go's package manager, make sure you follow the `Installing dev dependencies` section for your platform below: +For go >= 1.17 +``` +go install github.com/zsa/wally-cli@latest +``` +For go < 1.17 ``` go get -u github.com/zsa/wally-cli ```