deroproject / derosuite

DERO: Secure, Anonymous Blockchain with Smart Contracts. Subscribe to Dero announcements by sending mail to lists@dero.io with subject: subscribe announcements
http://wiki.dero.io
Other
280 stars 96 forks source link

Please update documentation of `get install` installation method. #37

Closed gwpl closed 2 years ago

gwpl commented 2 years ago

In https://github.com/deroproject/derosuite#installation-from-source we have recommendation to install using go get while in logs we see that this method is deprecated:

$ go get -u github.com/deroproject/derosuite/...
(...)
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'.
(...)       

Please update documentation with new get install method.

Nelbert442 commented 2 years ago

Derosuite is not currently leveraging go mod, built before.

Win: set GO111MODULE=off

Bash: export GO111MODULE="off"