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
+9.4k Golang : Post data with url.Values{}
+6.1k Golang : Handle Palindrome string with case sensitivity and unicode
+7k Golang : Take screen shot of browser with JQuery example
+4.1k Golang : Get S3 or CloudFront object or file information
+8.7k Golang : Simple file scaning and remove virus example
+7k Golang : Temperatures conversion example
+6k Golang : Scan files for certain pattern and rename part of the files
+12.1k Golang : convert(cast) string to float value
+3.8k Golang : How to deal with configuration data?
+1.2k Golang : PGX CopyFrom to insert rows into Postgres database
+7.5k Golang : Web(Javascript) to server-side websocket example
+19.9k Golang : Read directory content with filepath.Walk()