Golang : All update packages with go get command
Problem :
Some of the third party packages that your Golang application use have now been superseded by better version. How to instruct Golang to download and update all packages. Much like sudo yum update
or sudo apt-get upgrade
in Linux.
Solution :
The command go get <package_name>
is to download and install packages and dependencies, therefore the way to update all Golang packages found under $GOPATH
should be similar.
Use the command go get -u all
to update all the packages.
At the moment of writing, Google is shutting down code.google.com. You will see a bunch of warning messages indicating that packages with import path of code.google.com will stop working. After the update, I was able to run and compile my existing codes. So, it should be ok.
If you encounter problem after running go get -u all
, perhaps you might want to download the latest Golang version and use go get <package_name>
to download the latest packages that you need individually.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+3k Javascript : How to show different content with noscript?
+16.4k Golang : Set, Get and List environment variables
+30k Golang : How to split or chunking a file to smaller pieces?
+3.8k Unix/Linux : How to find out the hard disk size?
+3.7k Unix/Linux : How to archive and compress entire directory ?
+30.5k Golang : Strip slashes from string example
+4.8k Golang : Calculate diameter, circumference, area, sphere surface and volume
+10.1k Golang : Get user input until a command or receive a word to stop
+4k Golang : What is StructTag and how to get StructTag's value?
+7.6k Golang : Validate IPv6 example
+6.5k How to show different content from website server when AdBlock is detected?
+2.9k Linux : How to set root password in Linux Mint