From 0de7caa778eefd0ed1df3b214c0a58568e6a21ae Mon Sep 17 00:00:00 2001 From: Max Murphy-Skvorzov Date: Fri, 31 Mar 2023 05:36:52 +0200 Subject: [PATCH] Update go get in README `go get` is now deprecated for installing executables. See: https://go.dev/doc/go-get-install-deprecation And indeed doesn't work any more. So use the replacement `go install` instead. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a24ac88..301f9cf 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ fast and flexible way of exploring HTML from the terminal. Direct downloads are available through the [releases page](https://github.com/EricChiang/pup/releases/latest). -If you have Go installed on your computer just run `go get`. +If you have Go installed on your computer just run `go install`. - go get github.com/ericchiang/pup + go install github.com/ericchiang/pup@latest If you're on OS X, use [Homebrew](http://brew.sh/) to install (no Go required).