Download the GOAT of free IDEs here
First check if you have git installed
In your command line run:
git --version
If you see a version show up (something like git version 2.23.0 then go to the next step)
Check if you have Go installed on your machine by running this in your command line:
go
If you see a big ol list of shit pop up then you're good
Otherwise, install Go:
Now let's set up your Go path. Again, let's check if you have this already by running:
echo $GOPATH
If you see something like:
/Users/sstanton/go
Then you are good
Other wise follow these instructions:
Let's make sure you didn't fuck up. Follow these instructions:
Once you run go run hello.go, then you can stop here.
We need one dependency for this demo. Don't worry, we will explain what this does:
In your command line run:
go get -u github.com/gorilla/mux
Don't worry, it's safe. You can trust us...