This project is still using dep, without checked-in module vendoring, and the command that the instructions list to install it does not work due to either upstream module changes, or perhaps the subtle differences betweenthe alternate approaches to resolving dependencies between dep and go modules.
You can upgrade the project to modules by upgrading go and running go mod init. Commit your go.mod and mod.sum (IIRC) files and start adding dependencies with just go get within the repo.
This project is still using
dep
, without checked-in module vendoring, and the command that the instructions list to install it does not work due to either upstream module changes, or perhaps the subtle differences betweenthe alternate approaches to resolving dependencies betweendep
and go modules.You can upgrade the project to modules by upgrading go and running
go mod init
. Commit yourgo.mod
andmod.sum
(IIRC) files and start adding dependencies with justgo get
within the repo.