Home > Software engineering >  ipfs-update isn't showing the expected version list
ipfs-update isn't showing the expected version list

Time:12-12

I ran

go get -u github.com/ipfs/ipfs-update

and got in the end of what it looks like an installation going on the following

go get: installing executables with 'go get' in module mode is deprecated.

Use 'go install pkg@version' instead.

For more information, see enter image description here

Then, used

ipfs-update versions

but didn't see the latest version.

CodePudding user response:

To get that working I've used instead

go install github.com/ipfs/ipfs-update@latest

Then once running

ipfs-update versions

I got

enter image description here

Then could simply run

ipfs-update install v0.11.0

enter image description here

  • Related