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
+10.2k Golang : Setting variable value with ldflags
+4.5k Linux/MacOSX : Search and delete files by extension
+11k Golang : Get UDP client IP address and differentiate clients by port number
+9k Golang : GMail API create and send draft with simple upload attachment example
+6.9k Golang : Output or print out JSON stream/encoded data
+6.4k Golang : Extract sub-strings
+5.9k Golang : ROT32768 (rotate by 0x80) UTF-8 strings example
+21.7k Golang : How to read float value from standard input ?
+36.5k Golang : Convert(cast) int64 to string
+7.8k Golang : Convert(cast) io.Reader type to string
+36.9k Golang : Display float in 2 decimal points and rounding up or down
+4.8k Javascript : Detect when console is activated and do something about it