-
Notifications
You must be signed in to change notification settings - Fork 0
User Manual
The first thing you need to do is install golang. A guide for this can be found here: Getting Started With Go
Once you complete this tutorial, you should have a workspace directory for go, pointed to by $GOPATH. This directory should contain a src/, bin/, and pkg/. If they are not there, create them. Once golang is installed and you have this directory, with $GOPATH pointing to it, and $GOBIN pointing to the /bin directory within it, you are ready for the next step.
Golang has a command-line tool 'go'. To acquire the necessary code, you're going to need to use go get which downloads and install packages and their dependencies. You'll need to run three of these:
go get github.com/garyburd/redigo/redis
go get github.com/gyuho/goraph/graph
go get github.com/Grissess/sdnd16/
Once you have done this, you should have the necessary code in your /src directory.