Beego installation issues

Hi,

I am trying to install beego client on ubuntu but the online tutorials for the same doesn’t seem to work anymore. I am getting the below error:

go get: installing executables with ‘go get’ in module mode is deprecated.
Use ‘go install pkg@version’ instead.
For more information, see Deprecation of 'go get' for installing executables - go.dev
or run ‘go help get’ or ‘go help install’.

Can anyone help me with this as I can’t figure out how to install Go client with ‘go install’

Go Version: 1.17.3

1 Like

Hi @Gaurav_Malhotra,

The important part about go install is that you have to add a version number to the end of the package path, like “@v1.2.3”.

If you don’t care about using a particular version, simply use “@latest”, as in:

go install some/package/import/path@latest
4 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.