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
+15.2k Golang : Delete certain files in a directory
+12.1k Golang : Split strings into command line arguments
+18.6k Golang : Iterating Elements Over A List
+8.5k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+48.5k Golang : Upload file from web browser to server
+31k Golang : Calculate percentage change of two values
+10.1k Golang : How to tokenize source code with text/scanner package?
+35k Golang : Upload and download file to/from AWS S3
+11.1k Golang : Proper way to test CIDR membership of an IP 4 or 6 address example
+7.5k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+4.7k Unix/Linux : How to pipe/save output of a command to file?
+9.6k Golang : Quadratic example