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
+17.3k Golang : Fix cannot convert buffer (type *bytes.Buffer) to type string error
+19.4k Golang : Execute shell command
+8k Golang : Mapping Iban to Dunging alphabets
+14.9k Golang : Send email with attachment(RFC2822) using Gmail API example
+8.9k Yum Error: no such table: packages
+6.5k WARNING: UNPROTECTED PRIVATE KEY FILE! error message
+10k Golang : Detect number of active displays and the display's resolution
+7.1k Golang : Join lines with certain suffix symbol example
+8.8k Golang : Another camera capture GUI application with GTK and OpenCV
+9.8k Golang : How to extract video or image files from html source code
+10.4k Golang : Convert file content to Hex
+4.9k Unix/Linux : How to pipe/save output of a command to file?