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
+8.8k Golang : How to use Gorilla webtoolkit context package properly
+16.3k Golang : Generate QR codes for Google Authenticator App and fix "Cannot interpret QR code" error
+19k Golang : Execute shell command
+9.8k CodeIgniter : Load different view for mobile devices
+15k nginx: [emerg] unknown directive "ssl"
+5.6k Javascript : How to replace HTML inside <div>?
+13.9k Golang : Chunk split or divide a string into smaller chunk example
+8.1k Golang : Number guessing game with user input verification example
+7.1k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+14.6k Golang : How to check for empty array string or string?
+5.4k Golang : Frobnicate or tweaking a string example