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
+22.5k Golang : How to read JPG(JPEG), GIF and PNG files ?
+13.9k Golang : Gin framework accept query string by post request example
+11.4k Golang : How to pipe input data to executing child process?
+11.3k Golang : Fix - does not implement sort.Interface (missing Len method)
+23.1k Golang : Calculate time different
+12.1k Golang : Setup API server or gateway with Caddy and http.ListenAndServe() function example
+8.2k Golang : Tell color name with OpenCV example
+6.4k PHP : Proper way to get UTF-8 character or string length
+7.1k Golang : Squaring elements in array
+9.7k Golang : Read file with ioutil
+5.4k Golang : PGX CopyFrom to insert rows into Postgres database
+16.7k Golang : Merge video(OpenCV) and audio(PortAudio) into a mp4 file