watcher icon indicating copy to clipboard operation
watcher copied to clipboard

go get command deprecated starting go v1.17

Open ramisedhom opened this issue 4 years ago • 2 comments

Steps:

  1. Installed Go v1.17.1.
  2. Trying to install using documented command: go get -u github.com/radovskyb/watcher/...
  3. Got error:
go: downloading github.com/radovskyb/watcher v1.0.7
go get: installing executables with 'go get' in module mode is deprecated.
        Use 'go install pkg@version' instead.
        For more information, see https://golang.org/doc/go-get-install-deprecation
        or run 'go help get' or 'go help install'.

ramisedhom avatar Sep 30 '21 16:09 ramisedhom

I got the same problem, did you fix it ?

WoisWoi avatar Dec 18 '21 19:12 WoisWoi

This worked for me (1.19)

go install github.com/radovskyb/watcher/...@latest

cheddarwhizzy avatar Sep 26 '22 22:09 cheddarwhizzy