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
+13.3k Golang : Get constant name from value
+9.2k Golang : How to protect your source code from client, hosting company or hacker?
+17.1k Golang : When to use init() function?
+7.4k Golang : Detect sample rate, channels or latency with PortAudio
+12.2k Golang : Encrypt and decrypt data with x509 crypto
+5k Golang : Issue HTTP commands to server and port example
+9.3k Golang : Web(Javascript) to server-side websocket example
+5.7k Golang : Launching your executable inside a console under Linux
+9.5k Golang : Sort and reverse sort a slice of floats
+10.3k Golang : Generate random integer or float number
+17.9k Golang : Put UTF8 text on OpenCV video capture image frame
+10.4k Golang : How to unmarshal JSON inner/nested value and assign to specific struct?