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
+30.3k Golang : How to check if a date is within certain range?
+9.8k Golang : Display a text file line by line with line number example
+8.8k Golang : Allow Cross-Origin Resource Sharing request
+8k Golang : Terminate-stay-resident or daemonize your program?
+8.6k Golang : Get escape characters \u form from unicode characters
+3.9k Python : Convert(cast) bytes to string example
+17.9k Golang : Delete item from slice based on index/key position
+15.4k Golang : How to make a file read only and set it to writable again?
+10.3k Golang : Split strings into command line arguments
+7.5k Golang : automatically figure out array length(size) with three dots
+3.4k Adding Skype actions such as call and chat into web page examples