Apt-get to install and uninstall Golang
For this short tutorial, we will learn how to install, uninstall Golang with apt-get. We will also explore an interesting program that was created just to manage Golang installations and dependencies - GMV ( Go Version Manager ).
to install Golang
>sudo apt-get install golang
then confirm that the installation is ok
>go version
go version go1.4.2 linux/amd64
to uninstall Golang
>sudo apt-get remove golang
If you prefer use GVM ( https://github.com/moovweb/gvm ), the commands are
>gvm install go1.4.2
>gvm use go1.4.2 --default
to uninstall Golang and GVM
>gvm implode
See also : Mac OSX : Homebrew and Golang
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
+5.9k Golang Hello World Example
+10.2k Golang : Image to ASCII art example
+9.7k Golang : 2 dimensional array example
+16.7k Golang : Clearing slice
+4.5k Golang : Build new URL for named or registered route with Gorilla webtoolkit example
+9.8k Golang : Exit, terminating or aborting a program
+6k Golang : Gonum standard normal random numbers example
+16k Golang : Check if a directory exist or not
+18.5k Golang : Join arrays or slices example
+4.4k Golang : Derive cryptographic key from passwords with Argon2
+4.4k Golang : Handling image beyond OpenCV video capture boundary
+10.8k Golang : List objects in AWS S3 bucket