Mac OSX : Homebrew and Golang
This is a different version of the tutorial for removing Go from Mac. In this tutorial, we will learn how to install Go with Homebrew and uninstall Go with Homebrew.
these commands will install brew on your Mac
- Open a terminal on your Mac OSX
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- brew doctor
- brew update && brew upgrade
this command will install Go on your Mac
- brew install go
and this command will uninstall Go
- brew uninstall go
Note : Homebrew is the missing internal organ that Mac OSX suppose to have. Check out Homebrew at brew.sh
See also : Uninstall Go from Mac
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
+7.3k Golang : Mapping Iban to Dunging alphabets
+12.3k Golang : Drop cookie to visitor's browser and http.SetCookie() example
+7.2k Golang : Rename part of filename
+4.2k Java : Generate multiplication table example
+31k Golang : How to convert(cast) string to IP address?
+15.8k Golang : convert string or integer to big.Int type
+8.5k Golang : Random integer with rand.Seed() within a given range
+5.7k PHP : How to check if an array is empty ?
+7.2k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+13.4k Golang : Convert spaces to tabs and back to spaces example
+6.9k Golang : How to iterate a slice without using for loop?
+27.6k Golang : Move file to another directory